| Type |
νμ
λͺ
|
μ΄λͺ¨μ§ |
μ€λͺ
|
| feat |
Feature |
β¨ :sparkles: |
μλ‘μ΄ κΈ°λ₯ μΆκ° |
| Add, update, or remove feature. |
|
|
|
| fix |
Bugfix |
π :bug: |
λ²κ·Έ μμ |
| Fix a bug. |
|
|
|
| refac |
Refactoring |
β»οΈ :recycle: |
μ½λ 리ν©ν λ§ |
| Refactor code. |
|
|
|
| test |
Test |
β
:white_check_mark: |
ν
μ€νΈ μ½λ μμ |
| Add, update, or pass tests. |
|
|
|
| style |
Style |
π :lipstick: |
UI, μ€νμΌ νμΌ μμ |
| Add or update the UI and style files. |
|
|
|
| doc |
Document |
π :memo: |
λ¬Έμ μ
λ°μ΄νΈ |
| Add or update documentation. |
|
|
|
| build |
Build |
π¨ :wranch: |
λΉλ μμ€ν
λλ κ΅¬μ± κ΄λ ¨ λ³κ²½ |
| Add or update CI build system. |
|
|
|
| dep |
Dependency Update |
β¬οΈ :arrow_up: |
μμ‘΄μ± μ
λ°μ΄νΈ |
| Upgrade/Downgrade dependencies. |
|
|
|
// ~/.vscode/settings.json
{
"gitmoji.onlyUseCustomEmoji": true,
"gitmoji.addCustomEmoji": [
{
"emoji": "π¨",
"code": ":hammer:",
"description": "build : Add or update CI build system."
},
{
"emoji": "π",
"code": ":memo:",
"description": "doc : Add or update documentation."
},
{
"emoji": "β¨",
"code": ":sparkles:",
"description": "feat : Add, update, or remove feature."
},
{
"emoji": "π",
"code": ":bug:",
"description": "fix : Fix a bug."
},
{
"emoji": "β»οΈ",
"code": ":recycle:",
"description": "refac : Refactor code."
},
{
"emoji": "π",
"code": ":lipstick:",
"description": "style : Add or update the UI and style files."
},
],
}