Created
August 21, 2020 11:16
-
-
Save nhevia/937973c767da5840f47f91e9ef23eb9e to your computer and use it in GitHub Desktop.
Counts semantic git commits
This file contains hidden or 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 --pretty=oneline --no-merges --since 2019/01/01 --until 2021/12/31 | cut -d " " -f 2 |\ | |
cut -d "(" -f 1 | cut -d ":" -f 1 | sort -r | uniq -c | sort -nr -k1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For using in repositories with semantic commits (ex:
"fix: login form"
or"refactor: extracted prompt user modal"
)Counts total commit categories given a date range.
Expected result:

Recommended verbs:
Edit:
prog
is a non-default addition that I find particularly helpful.