What’s with the 50/72 rule?

Preslav Rachev
3 min readFeb 21, 2015

You have reached the pay-walled version of this article. You can read it absolutely for free on my blog, however.

It is part of common sense to assume that the worthiest commit messages lie far from any extremes. Years ago, I often fell in the trap of hastily sending a commit after commit, annoyed by the fact that I have to add a summary to it (let alone a description). I’ve seen many projects whose commit summaries consist primarily of one-word verbs like [FIX], [CLEAN], [TEST], etc.

They don’t tell much do they? Six months down the road, you’d be scratching your head, trying to remember what you were thinking exactly six months before, when you wrote that commit.

On the other hand are the “novels”. Some programmers go into much detail of what they’ve done, both in the summary, and in the description. This makes it difficult to read, and understand later on, what they did exactly.

Being verbose is by no means a bad thing. In fact, programmers are encouraged to put lengthy details about their commits, but only in the description. The summary is what helps you and other programmers to skim through thousands of commits, so it must be both concise and insightful.

The art of making a great commit message

In a 2008 blog post, tpope, described a system for creating commit messages, which I started calling simply, the “50/72" rule. The rules of the game are simple:

The first line of your commit message must be maximum 50 characters long. No more, and (ideally), no less.

Leave a blank line

Start writing your description. The description can be as verbose as it suits you. Each line in your description should though wrap at the 72nd mark.

Git is smart enough to distinguish the first line of your commit message as your summary. In fact, if you try git shortlog, instead of git log, you will see a long list of commit messages, consisting of the id of the commit, and the summary only. The reason for wrapping your description lines at the 72nd mark is that git log adds a padding of 4 blank spaces when displaying the commit message. To center the message perfectly, and make it read well on an 80-column terminal, you’d want to leave space for 4 more blank spaces at right side. That’s where 72 comes from.

What about the 50? An analysis of the average length of commit messages in the linux kernel suggests that the ideal size of a git commit summary is around 50 characters in length:

Most code editors display the current line and column number that the cursor is at. Many support automatic wrap-line settings. If you are using GitHub’s desktop app (as I used to), it will also show you warnings when you are over the limit.

Writing a great commit summary is like writing a great tweet, only shorter. Id suggest to try and write your thoughts at first, to see how long it gets. Then you’s paraphrase it, and put the extra content (the details) in the summary. Try to use the 50-column mark as a guideline for your thoughts. Try to reach as close as possible to it, without going over. Remember, short commit messages do not help, too long don’t either.

How does your project compare?

How does your team compare to the linux kernel contributors? You can check yourselves, using the code below:

You can use the data and plot it on a real histogram, using matplotlib. Many thanks to mgalgs for posting the code, and the histogram originally on StackOverflow.

Originally published at preslav.postach.io on February 21, 2015.

--

--

Preslav Rachev

I am a genuinely curious individual on a mission to help digital creators and startups realize their vision. Follow my journey: https://preslav.me