Search Results

1
vote

How do I get a list of files that have been added to the SVN since a certain date?

Something like svn log -v -r {"2008-01-01"}:HEAD . | grep ' A ' | sort -u should get you going... …