Easy ACL Making for Subversion
Posted by hardwarehank, Sun Sep 03 08:51:43 UTC 2006
So, I was messing around with Access Control Lists in svn today, and I needed to fund out who the commiters were on each repository. I used svn log to do this:
svn log https://modzer0.cs.uaf.edu/repos/hank | grep '^r[0-9]\{1,\}' | cut -d\| -f 2 | sort | uniq -c
This gets all the users and the number of commits they have:
1 DevastatorIIC
73 hank
37 hardwarehank
How helpful.

Blog Posts