Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get a list of added or deleted files from Subversion?

Tags:

svn

I want to retrieve a list of the files that has 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 the Subversion command line, or would I need to use a script to trawl the log?

like image 647
brasskazoo Avatar asked Nov 10 '08 00:11

brasskazoo


1 Answers

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]"'
like image 56
Lasse V. Karlsen Avatar answered Nov 02 '22 23:11

Lasse V. Karlsen