Monday, December 17, 2012

Find changes for a subversion commit

In subversion it can be surprisingly difficult to figure out what actually changed for a given revision.

This line will show you the files that were modified for a revision:
svn log -qv -r r101
Compare differences between two versions (show only files changed):
svn diff -r 101:102 --summarize
Where  "r101" is whatever revision you are interested in.

No comments:

Post a Comment