Jaqen H'ghar
Jaqen H'ghar

Reputation: 1879

How to get information from SVN repository?

We are using SVN for version control for our web application.

I want to know details like total number of check-in, check-ins by particular user. Is there any tool which can help me to do so?

Upvotes: 2

Views: 1560

Answers (5)

Dani Cricco
Dani Cricco

Reputation: 8979

You might want to try StatSVN. StatSVN retrieves information from a Subversion repository and generates various tables and charts describing the project development, e.g. timeline for the lines of code, contribution of each developer etc.

Upvotes: 0

Geniedesalpages
Geniedesalpages

Reputation: 418

There is a nifty tool which generates some static html report:

http://www.statsvn.org/

Upvotes: 2

Wim Coenen
Wim Coenen

Reputation: 66733

You can get Statistics from the Show Log dialog in TortoiseSVN. Remember to click the "Show All" button first, otherwise you'll only get stats on a limited range of revisions.

Upvotes: 2

Leonid
Leonid

Reputation: 23460

Does not revision give you total number of check-ins? For check-ins by user you could write a simple script. Run svn log command, and then parse the input using regex, or any programming language.

Upvotes: 0

Mike DeSimone
Mike DeSimone

Reputation: 42805

You could just write one (say, in Perl or Python) based on the svn log and svn annotate commands...

Upvotes: 1

Related Questions