For a given SVN repository I need to determine a list of all users who ever committed anything to that repository. This repository is not the only one on the SVN server, but the list should be restricted to that repository.
|
While I started rewriting my python parsing, I realized a much better way to do what you asked (I parsed names and dates of submission to calculate weekend/weekday submission ratios to see who had no life!) Check out the repo, then go to it and execute:
That gets a list of all the changes that have been commited, greps for the lines that start with the revision and number ( |
|||
|
vgm64's answer is good, but it doesn't work well with names that contain spaces. I changed it, so it does:
|
||||
|
|
|
Light form of @DrummerB answer for usernames with spaces, combined with simplicity of @vgm64
|
|||
|
|
svn logfor the users that have committed changes? Or is checking out the repo not an option? – vgm64 Apr 13 '10 at 4:41