Skip to content

Instantly share code, notes, and snippets.

@ombou
Last active January 9, 2020 17:55
Show Gist options
  • Save ombou/4cc75fc560b53ffdf571d431cd6d16be to your computer and use it in GitHub Desktop.
Save ombou/4cc75fc560b53ffdf571d431cd6d16be to your computer and use it in GitHub Desktop.
# 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

SVN Userful commands

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment