Created
March 20, 2012 19:20
-
-
Save remi/2140115 to your computer and use it in GitHub Desktop.
Find the most used verbs in your Git commit messages
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
[alias] | |
verbs = !git log --pretty=format:'%s' | cut -d \" \" -f 1 | sort | uniq -c | sort -nr |
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 verbs | |
440 Add | |
350 Merge | |
245 Fix | |
128 Remove | |
91 Improve | |
66 Use |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome!!