SVN Current Revision Number and Commit Log Between Two Revisions



Just a quick post if you’d like to get a history of SVN commits between an older revision and your current working copy. Get the current revision number from your local copy:

svnversion .

Then get a commit history between and older version and your current version:

svn log -r 6885:8485

Where the number before the colon is your old version and the one after is your current.



Leave a Reply