-
-
Save tairov/abf17e937bc9752d0bdfd2071f09edf6 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
#!/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