Tech Blog

SVN - Get list of files changed between revisions

Posted At : January 16, 2009 2:18 AM

For my own reference, here is how to get the list of files that have changed between any two subversion revisions.

svn diff --summarize -r5:10 http://svn.example.com/trunk

This will give something like:

If you want to get the revisions from a revision to the latest then you can change the 10 to HEAD - eg:

svn diff --summarize -r5:HEAD http://svn.example.com/trunk

Cheers, Mark