How do we count subversion commits per user
|
Use the SVN dumps:
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. |
||||
|
|
|
This gives a quick histogram by counting entries from the log in xml:
Could tack on a sed command to clean things up more, but thats answers the posted question.. |
|||
|
|
|
You could use StatSVN. But what do you want to achieve? commit count does not need to say anything! Keep it in mind. |
|||
|
|
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:
Disclaimer: it's my own project. |
|||
|
|
|
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. |
|||
|
|