Skip to content

Instantly share code, notes, and snippets.

@dev-ritik
Last active January 16, 2020 09:58
Show Gist options
  • Save dev-ritik/81fa117ab17beaf9715aeb7acdeed18f to your computer and use it in GitHub Desktop.
Save dev-ritik/81fa117ab17beaf9715aeb7acdeed18f to your computer and use it in GitHub Desktop.
Git commit message convention @mdg

Please start your commits with these prefixes for better understanding among collaborators, based on the type of commit:

  • feat: (addition of a new feature)
  • rfac: (refactoring the code: optimization/ different logic of existing code - output doesn't change, just the way of - - execution changes)
  • docs: (documenting the code, be it readme, or extra comments)
  • bfix: (bug fixing)
  • chor: (chore - beautifying code, indents, spaces, camelcasing, changing variable names to have an appropriate meaning)
  • ptch: (patches - small changes in code, mainly UI, for example color of a button, increasing size of tet, etc etc)
  • conf: (configurational settings - changing directory structure, updating gitignore, add libraries, changing manifest etc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment