Emoji prefix guide for git commit message. This guide try to make small definition by
- Use only short and single word emoji
- Do not subdivide categories too much
Create .gitmessage
on your git repository root with the following content.
# Guide (v1.0)
#
# π :+1: Apply changes.
#
# πΏ :herb: Add or update things for tests.
# β :coffee: Add or update things for developments.
# π¦ :package: Add or update dependencies.
# π :memo: Add or update documentations.
#
# π :bug: Bugfixes.
# π :kiss: Critical hotfixes.
# πΏ :shower: Remove features, codes, or files.
#
# π :rocket: Improve performance.
# πͺ :muscle: Refactor codes.
# π₯ :boom: Breaking changes.
# π© :poop: Bad codes needs to be improved.
#
# How to use:
# git config commit.template .gitmessage
#
# Reference:
# https://github.com/lambdalisue/emojiprefix
Then install it on the repository by the following command:
git config commit.template .gitmessage
These codes are licensed under CC0.