1

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?

chizou
  • 477
  • 3
  • 8
  • 18
  • not sure why this is marked off topic. any professional system administrator should be committing config files, documentation, scripts, etc. to a repository to keep track of changes. – chizou Feb 12 '15 at 16:05

1 Answers1

2

Use --summarize flag to svn diff:

svn diff --summarize -r REV1:REV2 URL_OR_PATH
abacabadabacaba
  • 329
  • 1
  • 3
  • 6