5 things to keep in mind to write better Git/Github commit messages.
1. Start with a verb (Add, Fix, Update) to indicate what the commit does.
β
2. Commit message should always be in the present tense to describe what the code does when applied.
β
β
3. Your commit message should describe what the commit does and why it is necessary.
β
β
4. If applicable, refer to tickets or issues in your commit message.
β
5. Avoid using complicated technical terms in your commit message to make it understandable across the team.
β
β
#git #github #commit
βββββββββββββ
Join @coderblast for more βοΈ
Share with your buddies π€
1. Start with a verb (Add, Fix, Update) to indicate what the commit does.
β
Add 2FA for user authentication
2. Commit message should always be in the present tense to describe what the code does when applied.
β
Added
, Updated
, Fixed
, Refactored
β
Add
, Update
, Fix
, Refactor
3. Your commit message should describe what the commit does and why it is necessary.
β
Update styles
β
Update styles for the homepage
4. If applicable, refer to tickets or issues in your commit message.
β
Fixes #14: Resolve issue with form submission
5. Avoid using complicated technical terms in your commit message to make it understandable across the team.
β
Optimize CRUD operations with RESTful APIs using GraphQL
β
Improve data handling for better API performance
#git #github #commit
βββββββββββββ
Join @coderblast for more βοΈ
Share with your buddies π€