Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 688 Bytes

commit-guidelines.md

File metadata and controls

20 lines (16 loc) · 688 Bytes

Commit Guideline

Commit message has the following pattern: --[verb]:[changes performed] Verb can be any of the following:

  • init
  • update
  • fix
  • refactor
  • log
  • removed

Sample commit messages

  • First commit after setting up a repo: --init: initial setup
  • After adding new changes: --update: added db connections
  • After making any fix: --fix: DB pool connection instetad of normal connection
  • After removing anything: --removed: redis was no longer required for todo app
  • When you moved a repeting code-block as util function: --refactor: new util to validate array payload for todos
  • After adding logs for debug: --log: added debudding logs inside update todo controller