Reputation: 25872
Let's say a given set of lines were modified in a file, I want to find the SVN revision at which they were modified. Currently I just have to keep picking through the log and finding where it was last added manually, is there a better way?
Upvotes: 3
Views: 1331
Reputation: 5649
svn blame myFile
gives you the revision-number and author of each line
edit: Take a look at this document. You can also add some options to the command. For instance:
Upvotes: 6