Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do we count subversion commits per user

share|improve this question

5 Answers

up vote 5 down vote accepted

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.

share|improve this answer

This gives a quick histogram by counting entries from the log in xml:

svn log -v --xml | grep '<author.*/author>' | sort $* | uniq -c | sort -rn

   1841 <author>joe</author><br>
    735 <author>jimbob</author><br>
    129 <author>sally</author><br>
     32 <author>mike</author>

Could tack on a sed command to clean things up more, but thats answers the posted question..

share|improve this answer

You could use StatSVN. But what do you want to achieve? commit count does not need to say anything!

Keep it in mind.

share|improve this answer
Not in a single day or week, but huge differences in the number of commits between developers working on more or less similar projects over time (lets say dayly average over a year) might tell us something. – Arve Systad Apr 18 at 7:22

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:

  1. unpack the PanBI distributable
  2. set the subversion URL in panbi.conf.xml
  3. run the "run-all-no-worries" .bat or .sh script

Disclaimer: it's my own project.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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