Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Build report from tortoise svn client

Tags:

svn

reporting

I am looking for a solution to build release notes from svn. What I want is a command line utility or something which can get me all the comments of checked in files from a given date.

Thanks

like image 626
joe Avatar asked Dec 05 '25 06:12

joe


2 Answers

Try something like this:

svn log -r {2008-05-28}:{2008-12-31}

from inside the working copy.

(See the Subversion Book for details)


Clarification: I believe Tortoisesvn doesn't bring a set of svn command-line binaries with it. You will need to install the Subversion package from here

like image 138
Brent.Longborough Avatar answered Dec 08 '25 20:12

Brent.Longborough


You can get that using the svn command line tools and the log command:

svn log svn://server/repos/trunk -r HEAD:{2009-02-19}

If you want, you can also get an XML formatted output.

see also the SVN Book section on Revision Dates

like image 24
crashmstr Avatar answered Dec 08 '25 19:12

crashmstr



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!