Search
Duplicate
๐Ÿ‘ฟ

Git Commit Message

Category
Dev
Parent item
Sub-category
Git
Sub-item
Tags
Git

Guidelines

โ€ข
Seperate subject from body with a blank line
โ€ข
Do not end the subject liine with a period
โ€ข
Capitalize the subject line and each paragraph
โ€ข
Use the imperative mood in the subject line
โ€ข
Wrap lines at 72 characters
โ€ข
Use the body to explain what and why you have done something rather than how.

Summary

<subject line> : capitalized imperative short summary <body> : focused on what and why <footer> : if you have specific issue number or ticket
Plain Text
๋ณต์‚ฌ

Tips

1.
Use type on subject line if you want:
โ€ข
featย - a new feature
โ€ข
fixย - a bug fix
โ€ข
docsย - changes in documentation
โ€ข
styleย - everything related to styling
โ€ข
refactorย - code changes that neither fixes a bug or adds a feature
โ€ข
testย - everything related to testing
โ€ข
choreย - updating build tasks, package manager configs, etc
2.
Use bullet points on body paragraph - I prefer this
3.
Put references on footer if you use an issue tracker:
Resolves: #123 See also: #456, #789
Plain Text
๋ณต์‚ฌ

References