Mostly reasonable guidelines for commit messages.
Commit messages consist of a message, description and related.
<message>
<description>
<related>
A message consists of a type, scope, and subject.
No line should be longer than 80 characters long, for optimal github viewing.
<type>(<scope>): <subject>
Examples: refactor(plans#show): remove 1 of 4 templating languages
feat
: New featurefix
: Bug fixformat
: Change not affecting the meaning of code (white-space, formatting, etc)docs
: Documentation-only changestyle
: Stylesheet-only changerefactor
: Change that neither fixes a bug or adds a featureperf
: Change that improves performancetest
: Addition of a missing testchore
: Changes to the build process or auxiliary tools and libraries
The scope could be anything specifying the site of the commit change. For
example plans#show
, PlanPerson
, LiveChatMessageList
, .tab-list
, etc...
The subject contains a succinct description of the change:
- use the imperative, present tense: "change" not "changed" nor "changes"
- don't use capitalize first letters
- don't use trailing punctuation (.)
Just as in the subject, use the imperative, present tense: "change" not "changed" nor "changes" The body should include the motivation for the change.
The footer should contain any information about Breaking Changes and is the place to reference Trello cards, or GitHub issues that the commit Closes.
This guide is pirated from inspired by Angular's excellent
CONTRIBUTING.md.
A detailed explanation can be found in this document.
Your stuff's on staging but you're making small, progressive tweeks. fixup
is your friend.
Fixup commits are associated with commit you've already made. They allow you to make commits without inserting additional messages. They can also be automatically squashed, for those civilized developers.
Here's how it works. commit
takes --fixup
as on option. When used, you'll have to provide the SHA of the commit your is fixing up. Like so:
git commit --fixup a9b8c7
# aliases also work but get confusing after your first fix
git commit --fixup head
You probably don't memorize your recent commit SHAs. You can use the syntax below as a backword search. This fixup commit will attach to the most recent commit, where "style" is in the message:
git commit --fixup :/style