Git Commit Message Conventions
Goals
allow generating CHANGELOG.md by script
allow ignoring commits by git bisect (not important commits like formatting
provide better information when browsing the history
Generating CHANGELOG.md
We use these three sections in changelog: new features, bug fixes, breaking changes. This list could be generated by script when doing a release. Along with links to related commits. Of course you can edit this change log before actual release, but it could generate the skeleton.
List of all subjects (first lines in commit message) since last release:
git log HEAD --pretty=format:%s
New features in this release
git log HEAD --grep feature Recognizing unimportant commits These are formatting changes (adding/removing spaces/empty lines, indentation), missing semi colons, comments. So when you are looking for some change, you can ignore these commits - no logic change inside this commit.
When bisecting, you can ignore these by:
git bisect skip $(git rev-list --grep irrelevant HEAD)
Provide more information when browsing the history
This would add kinda βcontextβ information.
Look at these messages (taken from last few angularβs commits):
Fix small typo in docs widget (tutorial instructions)
Fix test for scenario.Application - should remove old iframe
docs - various doc fixes
docs - stripping extra new lines
Replaced double line break with single when text is fetched from Google
Added support for properties in documentation
All of these messages try to specify where is the change. But they donβt share any convention...
Look at these messages:
fix comment stripping
fixing broken links
Bit of refactoring
Check whether links do exist and throw exception
Fix sitemap include (to work on case sensitive linux)
Are you able to guess whatβs inside? These messages miss place specification...
So maybe something like parts of the code: docs, docs-parser, compiler, scenario-runner, β¦
I know, you can find this information by checking which files had been changed, but thatβs slow. And when looking in git history I can see all of us tries to specify the place, only missing the convention.
Format of the commit message:
Any line of the commit message cannot be longer 100 characters! This allows the message to be easier to read on github as well as in various git tools.
A commit message consists of a header, a body and a footer, separated by a blank line.
Revert
If the commit reverts a previous commit, its header should begin with revert:
, followed by the header of the reverted commit. In the body it should say: This reverts commit <hash>.
, where the hash is the SHA of the commit being reverted.
Message header
The message header is a single line that contains succinct description of the change containing a type, an optional scope and a subject.
Allowed <type>
This describes the kind of change that this commit is providing.
feat (feature)
fix (bug fix)
docs (documentation)
style (formatting, missing semi colons, β¦)
refactor test (when adding missing tests)
chore (maintain)
Allowed <scope>
Scope can be anything specifying place of the commit change. For example $location, $browser, $compile, $rootScope, ngHref, ngClick, ngView, etc...
You can use * if there isn't a more fitting scope.
<subject> text
This is a very short description of the change.
use imperative, present tense: βchangeβ not βchangedβ nor βchangesβ
don't capitalize first letter
no dot (.) at the end
Message body
just as in use imperative, present tense: βchangeβ not βchangedβ nor βchangesβ
includes motivation for the change and contrasts with previous behavior
useful [Link] 1
useful [Link] 2
Message footer
Breaking changes
All breaking changes have to be mentioned as a breaking change block in the footer, which should start with the word BREAKING CHANGE: with a space or two newlines. The rest of the commit message is then the description of the change, justification and migration notes.
Referencing issues
Closed bugs should be listed on a separate line in the footer prefixed with "Closes" keyword like this:
Closes #234
or in case of multiple issues:
Closes #123, #245, #992
Examples
Last updated