Skip to content

Instantly share code, notes, and snippets.

@preslavrachev
Created February 21, 2015 10:27
Show Gist options
  • Save preslavrachev/8e38c98a5f42df116ec6 to your computer and use it in GitHub Desktop.
Save preslavrachev/8e38c98a5f42df116ec6 to your computer and use it in GitHub Desktop.
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