Skip to content

Instantly share code, notes, and snippets.

@jrumbut
Last active March 17, 2020 03:19
Show Gist options
  • Save jrumbut/5551699 to your computer and use it in GitHub Desktop.
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!
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