Skip to content

Instantly share code, notes, and snippets.

@zlrc
Created November 8, 2025 01:13
Show Gist options
  • Select an option

  • Save zlrc/461667cf0083e6fe510e082791de7fb1 to your computer and use it in GitHub Desktop.

Select an option

Save zlrc/461667cf0083e6fe510e082791de7fb1 to your computer and use it in GitHub Desktop.
A list of conventional commit types, because I keep forgetting them.
  • feat: A new feature
  • fix: A bug fix
  • docs: Documentation-only changes (example scope: readme)
  • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
  • test: Adding missing tests or correcting existing tests
  • perf: A code change that improves performance
  • refactor: A code change that neither fixes a bug 'nor adds a feature
  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
  • chore: Miscellaneous changes that don't modify source code or test files
  • revert: Undo a previous commit

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment