I can't seem to find a way to use Subversion to take a diff of directory structure changes between two revisions. I'd like to see what files/directories/symlinks have been added/deleted between two revisions. svn diff only seems to show me contents. svn log --verbose can kind of show what I'm looking for, but I have to add up all the changes to get a comprehensive summary. Is there a better way to do it?
Asked
Active
Viewed 1,005 times
1 Answers
2
Use --summarize
flag to svn diff
:
svn diff --summarize -r REV1:REV2 URL_OR_PATH

abacabadabacaba
- 329
- 1
- 3
- 6