I've read all kinds of Git tutorials, including the official one, and they all seem to tell me it's good convention and practice to write Git commit notes in the present tense.
Why is that? What is the reasoning behind it?
|
I've read all kinds of Git tutorials, including the official one, and they all seem to tell me it's good convention and practice to write Git commit notes in the present tense. Why is that? What is the reasoning behind it? |
|||||
|
|
Git is a distributed VCS. Many people work on same project. It'll get changes from many sources. Rather than writing messages that say what a committer done. Its better to consider these messages as the instructions for what is going to be done after the commit is applied on the repo. So write a message like this
Instead of
Treat the git log not a history of your actions, but a sequence descriptions of what all the commits do. There is a big thread on hacker news about it. There you'll get many more reason behind this convention. |
|||||||||||||||||
|
|
It's just a (relatively) common convention so that commits messages in a project read consistently. The advice for submitting patches to Git (for example) comes from
As can be seen from the bracketed out subject, this convention removes the need for repeated - or alternatively implied - subjects for the commit verb that don't provide any useful benefit. |
|||
|
|