How do I get a list of files that have changed since svn in a date range?

I am trying to pull a list of files that have changed over a range of dates from svn.

I am currently using something like this:

svn diff -r {2009-08-10}:{2009-08-20} --summarize d:/libs/trunk

      

Is there a better way to do this?

+2


source to share


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


If you need to do this analysis a lot, I suggest fisheye: link text



0


source







All Articles