Better Programming

Advice for programmers.

Follow publication

Member-only story

Github Templates: The Smarter Way to Formalize Pull Requests Among Development Teams

Paige Niedringhaus
Better Programming
Published in
6 min readJun 11, 2019

Photo by rawpixel.com from Pexels

Introduction

Welcome! Today I’m going to give you a better, easier, more efficient way to keep pull requests not only uniform but also completely customized to your dev team.

The Common Issues

If you’ve ever worked with Github as a software developer, either solo or as part of a team, you should be familiar with the issues I’m about to show you.

Leaving less than stellar commit messages

First, the nonsensical commit messages. These are usually sent multiple times because we, as developers, are lazy and will keep pushing changes to Github with the same note even though the update has nothing whatsoever to do with that message.

This is a typical bunch of commit messages, I found in one shared repo my team owns.

Side note: If you want to see some laugh out loud commit messages, I highly recommend the website What the Commit. Just keep refreshing the page for a constant stream of hilarious (and accurate) commit messages.

Completely puzzling pull requests

You’ve seen (and/or submitted) a pull request like this one to a repo — don’t try to deny it. Names and discerning details have been omitted to protect the privacy of the guilty.

Excellent. This definitely tells me just what I need to know.

Yes, this is an actual pull request on GitHub, titled only as “catching up” with a ton of commit messages that give very little context and no other details to anyone reviewing this any idea as to what was going on here.

At this point, you may be thinking to yourself that this does, in fact, resemble things you’ve seen (or submitted) before and you might not see a huge problem with it.

If you’re a solo developer working on your own projects, always aware of everything in the code base, I might be inclined to agree…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Paige Niedringhaus
Paige Niedringhaus

Written by Paige Niedringhaus

Staff Software Engineer at Blues, previously a digital marketer. Technical writer & speaker. Co-host of Front-end Fire & LogRocket podcasts

Responses (3)

Write a response

If you’re a solo developer working on your own projects, always aware of everything in the code base, I might be inclined to agree with you

Even so, it happens frequently that you'll have to go back in time to understand a change (and the reason for that change), and adding context to your commits and pull requests is always a good idea, for your fellow developers but also for your future self

Thanks for the tips Paige Niedringhaus!
But does the pull request template actually affect *title* of the pull request?