Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 827 Bytes

commit-types.md

File metadata and controls

24 lines (19 loc) · 827 Bytes

Conventional commit types

For conventional commits, in addition to the default types

  • fix: patches a bug
  • feat: introduces a new feature to the codebase

Evan uses the following types:

  • build: build related
  • ci: work related to CI
  • chore: updating deps, etc.
  • docs: documentation changes
  • drop: deleting stuff or removing a feature
  • edit: minor changes that don't constitute a new feature
  • perf: performance improvements
  • polish: copy editing or cleanup that doesn't affect functionality
  • refactor: major rewriting or restructuring that doesn't fix bugs or affect functionality
  • revert: revert commits
  • style: code style changes
  • test: unit testing, etc.

See the corresponding GitHub action.