I need to find out all the files that were added to a given branch starting from a certain revision number. What command should I use ? I have access to grep, etc. I'm looking for a command-line command, of course. I tried to use svn log --quiet but I could not figure out how.

link|improve this question

62% accept rate
feedback

1 Answer

It looks like "svn diff -r799:HEAD --summarize" provides what you want. Just filter lines starting from "A".

(799 is just a revision when I created branch which was used for testing)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.