Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hoppergee/b61e5668eb9bc10ee59990c41d7fb69b to your computer and use it in GitHub Desktop.
Save hoppergee/b61e5668eb9bc10ee59990c41d7fb69b 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