Reputation: 19905
Is it possible to get a history of all changes to a certain file including the actual lines that changed?
Something like svn log --with-diffs myfile.txt
which would output the commit messages as usual + the diff.
Upvotes: 1
Views: 108
Reputation: 1567
Upgrade to subversion 1.7 then use svn log --diff
http://subversion.apache.org/docs/release-notes/1.7.html
Upvotes: 2