tags:

views:

157

answers:

1

I want to retrieve a list of the files that have been added or deleted from our subversion repository over, for example, the last month.

I'd prefer to have the file names, and not just a count.

Is this possible from subversion command line, or would I need to use a script to trawl the log..?

+3  A: 

I don't think you can do it with just the command line tools, but outputting it with an xml format and doing some grepping or filtering would probably give you what you want.

Try this for a start:

svn log -v --xml | grep 'action="[A|D]"'
Lasse V. Karlsen