Skip to content

Instantly share code, notes, and snippets.

@ombou
ombou / Commands
Last active January 9, 2020 17:55
# 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