tags:

views:

33

answers:

2

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.

+2  A: 

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

Eric LaForce
That works but I get a very ugly dump of all the actual changes. I just want to see the files.
Travis
Oh, not sure in that case. I imagine you could pipe it to grep, but that might get nasty.
Eric LaForce
+2  A: 

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.)

Stéphane
Thank you. The summarize switch works great but I end up with this huge list with A's and D's in the first column. What does that signify? I can't find much in the man pages.
Travis
They signify A - Add, D- delete, M - modify
Eric LaForce