Gaiety's visual representation as a fursona (an original furry fandom character) depicted as an animated gif falling downward with a controlled hand outstretched. Faer hair and tail waves in the wind while their floppy dog ears flop about as well. Fae are an anthromorphic canine like a german shepherd clothed like a human in a t-shirt and denim shorts. Art is by Lynte.

Self Code Review with Git Add Patch in Posts

Reduce errors and typos while building confidence with every chunk you commit.

Code reviews reduce logical errors, call out typos, and prevents accidentally committing more code than intended (1). They're essential for all sized teams pushing to the same code base while maintaining sanity.

Should a developer find themselves discovering any accidental "oops!" in their pull request it's a good indicator of a flaw in workflow. Introducing the interactive self code review:

git add --interactive
bash

Interactive adding in git offers a choose-your-own-adventure style "What Now>" series of options.

The Useful Bit: Git Patch

Today let's look at the patch option. We can skip to the patch option in the future with this handy shortcut:

Example pretends we have file.ext and have added a line that defines a version...

git add -p

diff --git a/file.ext b/file.ext
index sha1..sha2 sha3
-- a/file.ext
++ b/file.ext
{
  "name": "example json",
  +"version": "1.0.0",
  "private": true,
Stage this hunk [y,n,q,a,d,/,e,?]?
bash

Looks like a huge chunk of stuff! Broken down, the response describes what file was modified followed by a chunk of color coated git diff.

Now What? Staging Hunks of Code

Many options are provided in the "Stage this hunk?" prompt following a git add patch.

Pressing ? in response to the prompt explains each valid response. These are some essentials:

  • y - stage this hunk
  • n - do not stage this hunk
  • q - quit

You'll find that by going through this process you can read every line you'd like to add to a commit and make better choices about them.

Splitting s

These "magical" feeling chunks aren't always smart enough. Sometimes there's a need to split (with the s response) a chunk into smaller chunks. This comes up more often than you'd think if you're developing empathetically.

a Add or d Don't Add Entire File

An a response will stage the current hunk and all the following within the current file automatically. This is not recommended because you're opting to skip parts of your personal code review.

However, d is a nice way to skip adding anything from an entire file and can save a lot of time.

Manually Editing

Typos or "oops!" can be quickly corrected with the e response. This will open just the chunk for quick adjustments including line adding and removal.

Summary

Git patch has become a core part of my workflow to ensure quality and boost personal confidence in the code I ship. Give it a try today!

ava@wroten.me

Wish to contact me about meetup or conference talks, work opportunities or otherwise? Reach out to me via email.

Resume

Work history, skills, volunteering and talks given all in a one page PDF.

Blog

Programming, art, design, and other queer things.

Git

Coding projects and such on a self hosted Forgejo instance.