views:

176

answers:

2

I am trying to write a utility in python to get me all the files that have been modified for a specific branch....i don't care about the date or who commited.

how would I go about doing this? I can handle the python part, I just can't find a command in svn to give me the output.

A: 

You can use the "svnlook history" command: Subversion Complete Reference

NebuSoft
+3  A: 
svn diff -r REV:HEAD --summarize

where REV is the revision in which the branch was created.

Dingo