git commit command for all changes, follow the reference:
A quick reference to the most commonly used commit message prefixes following the Conventional Commits standard.
| Prefix | Meaning |
|---|---|
| feat: | Introduces a new feature |
| fix: | Fixes a bug |
| docs: | Documentation changes only |
| style: | Code style changes (formatting, missing semicolons, no logic changes) |
| refactor: | Rewriting code without altering behavior |
| perf: | Performance improvements |
| test: | Adding or updating tests only |
| build: | Changes to build system, dependencies, or CI pipelines |
| ci: | CI configuration or scripts |
| chore: | Maintenance tasks (e.g., cleaning files, bumps), no production code |
| revert: | Reverts a previous commit |