Created
October 30, 2015 13:03
-
-
Save fgm/5cecbaee477b54306dc6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
# Build a commit frequency list. | |
ROW_LIMIT=20 | |
git log --name-status $* | \ | |
grep -E '^[A-Z]\s+' | \ | |
cut -c3-500 | \ | |
sort | \ | |
uniq -c | \ | |
grep -vE '^ {6}1 ' | \ | |
sort -n | \ | |
tail --lines="$ROW_LIMIT" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment