tags:

views:

1523

answers:

1

In svn, I have a branch which was created, say at revision 22334. Commits were then made on the branch.

How do I get a list of all files that were changed on the branch compared to what's on the trunk? I do not want to see files that were changed on the trunk between when the branch was created and "now".

+6  A: 

This will do it I think:

svn diff -r 22334:HEAD --summarize <url of the branch>

andy
Perfect. Exactly what I was looking for. Thanks.
trenton