logos-storage-docs-obsidian/10 Notes/Conventional Commits Prefixes.md
2025-12-15 03:52:43 +01:00

17 lines
744 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Common conventional commit prefixes are:
- **feat**: New feature
- **fix**: Bug fix
- **docs**: Documentation changes
- **style**: Code style changes (formatting, missing semicolons, etc.)
- **refactor**: Code refactoring (neither fixes a bug nor adds a feature)
- **perf**: Performance improvements
- **test**: Adding or updating tests
- **build**: Changes to build system or dependencies
- **ci**: Changes to CI configuration files and scripts
- **chore**: Other changes that don't modify src or test files
- **revert**: Reverts a previous commit
Optional scope can be added in parentheses: `feat(api):`, `fix(wallet):`, etc.
This is especially relevant when working with status-go repo. See also [[testing codex-status-go integration]].