Last active
January 9, 2020 17:55
-
-
Save ombou/4cc75fc560b53ffdf571d431cd6d16be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get first revision | |
svn log -r 1:HEAD --limit 1 | |
# Total number of commits | |
svn log --xml | grep '<author>' | wc -l | |
# Number of commits by User | |
svn log --xml | grep '<author.*/author>' | sort $* | uniq -c | sort -rn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment