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 se开发者_运维问答e the changes really) between branch/tag A and branch/tag B, etc.
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.)
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
精彩评论