What svn command would list all the files modified on a branch

svn

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

Best Answer

This will do it I think:

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