git commit -m "init: message"
init
- Initial Commit
Used for initializing a project.
git commit -m "feat: message"
feat
- New Features
Used to add new features.
git commit -m "fix: message"
fix
- Bug Fixes
Used to fix bugs.
git commit -m "perf: message"
perf
- Performance Improvements
Used to improve performance, making it faster and more efficient.
git commit -m "refactor: message"
refactor
- Code Refactoring
Used to change the structure of the code without adding new features or fixing bugs.
git commit -m "style: message"
style
- Code Styling
Used for changes related to code style.
git commit -m "docs: message"
docs
- Documentation Updates
Used to update documentation, such as README files.
git commit -m "test: message"
test
- Testing
Used to add or improve tests.
git commit -m "ci: message"
ci
- Continuous Integration
Used for changes to CI configuration, such as YAML files or build scripts.
git commit -m "build: message"
build
- Build Changes
Used for changes that affect the build system or external dependencies.
git commit -m "env: message"
env
- Environment Changes
Used for changes related to environment configuration or .env
files.
git commit -m "config: message"
config
- Configuration Changes
Used for changes to project configuration.
git commit -m "deps: message"
deps
- Dependencies
Used to add, remove, or update dependencies.
git commit -m "i18n: message"
i18n
- Internationalization
Used for changes related to translation and localization.
git commit -m "chore: message"
chore
- Miscellaneous Changes
Used for changes that are not features or bug fixes, such as dependency updates.
git commit -m "merge: message"
merge
- Merging Branches
Used for branch merge commits.
git commit -m "revert: message"
revert
- Reverting Changes
Used to revert a previous commit.
git commit -m "wip: message"
wip
- Work in Progress
Used for work in progress commits.