Last active
March 17, 2020 03:19
-
-
Save jrumbut/5551699 to your computer and use it in GitHub Desktop.
Find the most frequently used words in your team's commit messages! Woo!
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
git log --stat | grep "^ " | tr -d '[:punct:]' | tr ' ' '\n' | tr 'A-Z' 'a-z' | sort | uniq -c | sort -rn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment