Skip to content

Instantly share code, notes, and snippets.

@MarcL
Last active March 18, 2019 23:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcL/db55547dbf7e24833db11d8aa815f65d to your computer and use it in GitHub Desktop.
Save MarcL/db55547dbf7e24833db11d8aa815f65d to your computer and use it in GitHub Desktop.
Angular semantic commit message types

Angular semantic commit message types

I keep forgetting what they mean so I'm adding them to a gist. Comes from the Angular repository.

Type

Must be one of the following:

  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to our CI configuration files and scripts (example scopes: Circle, BrowserStack, SauceLabs)
  • docs: Documentation only changes
  • feat: A new feature
  • fix: A bug fix
  • perf: A code change that improves performance
  • refactor: A code change that neither fixes a bug nor adds a feature
  • 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment