Reputation: 2411
I'm trying to find the proper command in subversion to see a list of all the files that have changed (don't need to see the changes really) between branch/tag A and branch/tag B, etc.
Upvotes: 3
Views: 2987
Reputation: 6905
How about svn diff --summarize <A> <B>
You may also use svn diff --help
to get more options
and svn status --help
to get explanations on all possible modification description letters ('A', 'M' etc.)
Upvotes: 9
Reputation: 2151
SVN DIFF is what you are looking for. Should be able to specify the urls to the different branches
svn diff http://domain.com/tags/A http://domain.com/tags/B
Upvotes: 2