conventional-gitmoji-commit
When you're writing a git commit message, you'd be familiar with the conventional-gitmoji-commit style:
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Conventional-gitmoji-commit is "compatible" with the conventional commit style, but it also incorporates gitmoji to make commit messages more visually appealing and easier to understand at a glance. The format is:
<type>[optional scope]: <gitmoji> <description>
[optional body]
[optional footer(s)]
For example:
feat: ✨ Add new user authentication flow
Always write commit messages in English, whatever the historical commit messages are.
When to use
When you're writing a git commit message, or you're asked to use this skill.
Instructions
- Choose a type from the conventional-commit types and an appropriate gitmoji.
- If not sure which type to use, check the descriptions in ./conventional-commit.yaml and ./gitmoji.yaml.
- Write the commit message in English.
- If you're asked to use this skill, commit your changes with this style.