One Two Three
One Two Three

Reputation: 23537

list all diffs between revisions on a file with svn

You can do svn log myfile.java | less and scroll up and down to see all the revisions made on a particular file

Is there any way to include the diff between revisions in that too? I don't want to have to do svn log | less, find out the revisions, and manually do svn diff -r<range> on each pair ...

Upvotes: 0

Views: 40

Answers (1)

Patrick Quirk
Patrick Quirk

Reputation: 23757

Just include the --diff flag:

svn log myfile.java --diff | less

Upvotes: 1

Related Questions