How do I get a list of files that have changed since svn in a date range?
2 answers
I believe my original method to programmatically manipulate data from svn is the best approach.
svn diff -r {2009-08-10}:{2009-08-20} --summarize d:/libs/trunk
where we ask for the difference based on the range from the first date to the second date. We are asking for the summarize option so that we can get the modified file listed on its own line.
+1
source to share