https://github.com/lambdalisue/emojiprefix
🎨 Emoji prefix guide for git commit messages
https://github.com/lambdalisue/emojiprefix
commit emoji git prefix
Last synced: 5 months ago
JSON representation
🎨 Emoji prefix guide for git commit messages
- Host: GitHub
- URL: https://github.com/lambdalisue/emojiprefix
- Owner: lambdalisue
- Created: 2021-06-26T08:45:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-26T08:47:05.000Z (over 4 years ago)
- Last Synced: 2025-02-23T00:45:13.365Z (9 months ago)
- Topics: commit, emoji, git, prefix
- Homepage:
- Size: 4.88 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎨 emojiprefix
Emoji prefix guide for git commit message.
This guide try to make small definition by
1. Use only short and single word emoji
2. Do not subdivide categories too much
## Usage
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
```
## License
These codes are licensed under CC0.
[](http://creativecommons.org/publicdomain/zero/1.0/deed)
## See also
- [gitmoji](https://gitmoji.dev/)
- [Git Commit message Emoji](https://gist.github.com/parmentf/035de27d6ed1dce0b36a)
- [Emoji Cheat Sheet](https://www.webfx.com/tools/emoji-cheat-sheet/)