up vote 8 down vote favorite
1
share [g+] share [fb]

What I would like is be able to generate a simple report that is the output of svn log for a certain date range. Specifically, all the changes since 'yesterday'.

Is there an easy way to accomplish this in Subversion besides grep-ing the svn log output for the timestamp?

Example:

svn -v log -d 2008-9-23:2008-9:24 > report.txt
link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Very first hit by google for "svn log date range": http://svn.haxx.se/users/archive-2006-08/0737.shtml

So svn log <url> -r {2008-09-19}:{2008-09-26} will get all changes for the past week, including today.

And if you want to generate reports for a repo, there's a solution: Statsvn.

HTH

link|improve this answer
wow, I was pretty close with my 'guess', thanks – Adam Sep 26 '08 at 20:31
feedback

You can use dates the same as you can use revision numbers. The syntax is {yyyy-mm-dd}. So, for all changes between 12:00am on September 23 and 12am on September 24, do:

svn log -v -r {2008-09-23}:{2008-09-24} > report.txt
link|improve this answer
feedback

you can do this:

   svn log -r{2008-9-23}:{2008-9-24} > report.txt

add a --xml before the -r if you want ot get the output in xml format for "easier" post processing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.