|
|
|
|
|
by aylmao
2400 days ago
|
|
I've seen this convention before. I personally find it more useful to tag commit messages with [fix], [docs], etc. It makes it more easily searchable, which is IMO what you really want. You can: git log --pretty=oneline --abbrev-commit | grep "\[doc"
to see documentation commits, and count them by piping to `wc`.Emojis feel... complicated. What do they mean? Here you're just typing the literal word so not much to remember or search. |
|