Created
February 21, 2015 10:27
-
-
Save preslavrachev/8e38c98a5f42df116ec6 to your computer and use it in GitHub Desktop.
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
cd /path/to/repo | |
#displays the raw lengths | |
git shortlog | grep -e '^ ' | sed 's/[[:space:]]\+\(.*\)$/\1/' | awk '{print length($0)}' | |
#or a text-based historgam | |
git shortlog | grep -e '^ ' | sed 's/[[:space:]]\+\(.*\)$/\1/' | awk '{lens[length($0)]++;} END {for (len in lens) print len, lens[len] }' | sort -n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment