Ternary
Ternary

Reputation: 2411

SVN Command Clean List of Files Changed Between Branches

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

Answers (2)

Stéphane
Stéphane

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

Eric LaForce
Eric LaForce

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

Related Questions