Easy Commit message guidelines | Keep it simple

Commit message format

(action): (message)

git commit -m "add: swagger docs"
https://easycommits.alldaycode.com
    Example1: add: authentication functionality with username/email login api
    Example2: update: login api to allow phone number login
    Example3: refactor: authentication feature login api

Types of actions (simple and easy to remember)

- add (denote a new file/feature/code add)
- update (denote update and changes on code and files)
- delete (denote feature or file deletion )
- refactor (denote changes like code formatting,folder structure formatting)

Extra if you need it (But make it easy and simple)

1. Task/Ticket ID referencing (your internal reference)

        Example1: add: [ADC-1] implement authentication feature
        Example2: update: #ref100 implement authentication feature
    

2. Denote breaking changes (use of [BREAK] word on message)

        Example1: update: [BREAK] change authentication flow