Created
August 17, 2012 04:59
-
-
Save santhoshtr/3376092 to your computer and use it in GitHub Desktop.
Git stats
This file contains 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
# Number of contributors to the project | |
git log --pretty='%aN'|sort -u|wc -l | |
# Total commits made | |
git log --oneline | wc -l | |
# NUmber of lines written/modified | |
git log --stat|perl -ne 'END { print $c } $c += $1 if /(\d+) insertions/;' | |
# Top 5 contributos all time | |
git log --pretty='%aN'|sort| uniq -c|sort -k1 -n -r|head -n 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment