Reputation: 1879
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
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
Reputation: 418
There is a nifty tool which generates some static html report:
Upvotes: 2
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
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
Reputation: 42805
You could just write one (say, in Perl or Python) based on the svn log
and svn annotate
commands...
Upvotes: 1