How do we count subversion commits per user
+4
A:
Use the SVN dumps:
svn log -v --xml > logfile.log
Then you can either do the data mining by yourself, or use StatSVN.
Another option, which uses shell commands only (and is actually kinda nice), is detailed in this blog post.
Yuval A
2010-07-21 08:43:24
+3
A:
You could use StatSVN. But what do you want to achieve? commit count does not need to say anything!
Keep it in mind.
Andreas
2010-07-21 08:43:54
+1
A:
PanBI also supports Subversion analysis, one of which is the number of commits per developer over a time period. You can see what it does in a few minutes in the screencast.
There are 3 steps:
- unpack the PanBI distributable
- set the subversion URL in panbi.conf.xml
- run the "run-all-no-worries" .bat or .sh script
Disclaimer: it's my own project.
Tomislav Nakic-Alfirevic
2010-07-21 09:23:09
A:
You can use a post-commit hook(trigger) on the server. Inside the trigger you can write info in a database or in a CSV file that can be processed later.
Daniel Voina
2010-07-21 09:45:16