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

744 B

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.