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 |