English | 한국어
label: message
- Place a label representing the category at the beginning, followed by the commit message describing the changes.
- Use all lowercase letters, and follow camelCase if necessary.
-
All commit messages must be written in English.
-
Commit messages should clearly describe where, what, and how the changes were made.
-
Example: Developing authentication domain such as login/signup →
feat: add auth service
-
| Label | Description |
|---|---|
| feat | Add a new feature / new code addition |
| fix | Modify or improve a feature/code |
| bug | Fix a bug/error |
| merge | Merge branches |
| deploy | Project deployment / related documentation |
| docs | Add or update documentation |
| init | Initial project setup / creation |
| delete | Delete code/file/document |
| note | Add comments |
| style | Modify code style/structure |
| config | Update configuration files, dependencies, or libraries |
| etc | For cases not covered above |