Skip to content

Instantly share code, notes, and snippets.

@vemarav
Created May 9, 2018 16:50
Show Gist options
  • Save vemarav/e2d51cf99bcf1591c815d4a9c6c89e68 to your computer and use it in GitHub Desktop.
Save vemarav/e2d51cf99bcf1591c815d4a9c6c89e68 to your computer and use it in GitHub Desktop.
Commit Message Convention

Commit message convention We prefix our commit messages with one of the following to signify the kind of change:

fix: bug fixes, e.g. fix Button color on DarkTheme.

feat: new features, e.g. add Snackbar component.

refactor: code/structure refactor, e.g. new structure folder for components.

docs: changes into documentation, e.g. add usage example for Button.

test: adding or updating tests, eg unit, snapshot testing.

chore: tooling changes, e.g. change circle ci config.

BREAKING: for changes that break existing usage, e.g. change API of a component.

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