DEV Community

Alexis Reigel
Alexis Reigel

Posted on

The Git fixup workflow

Original post:

www.koffeinfrei.org/2018/09/18/the-git-fixup-workflow/

Introduction

The GitHub flow, or a similar Git strategy where the main work is done on feature branches which result in pull or merge requests, has become the standard way to work with Git and GitHub or GitLab (or Bitbucket even) for many developer teams. Besides the main advantages of this way of working it also enables developers to keep a clean Git history (see also 5 rules to Git better).

Let's assume the following as a starting point for the suggested workflow in this post:

  • You want to maintain a clean Git history, meaning that fix commits should be avoided
  • You don't want to interrupt your development workflow by having to rewrite your Git history all the time
  • You can use git commit --amend only for the latest commit

Git has some powerful commands that allow us to both keep a clean history and not having to interrupt our development workflow. We'll call it "the Git fixup workflow".

The linear workflow

To illustrate the Git fixup workflow, we'll use the following example hack session:

# coding the user component's index view

$ git commit -m "add user component's index view"

# coding the user component's edit view

$ git commit -m "add user component's edit view"

# updating the component's index view so it actually works

$ git commit -m "add user component's index view, it works now"

# a typo is noticed in the index view

$ git commit -m "fix typo in index view"

# fix a bug in the view rendering

$ git commit -m "fix view rendering"

$ rubocop
$ yarn lint

# fix linting errors

$ git commit -m "fix linting errors"

# team members do a code review on the PR / MR

$ git commit -m "fix import in index"
Enter fullscreen mode Exit fullscreen mode

The above session leads to the following Git history:

fix import in index
fix linting errors
fix view rendering
fix typo in index view
add user component's index view, it works now
add user component's edit view
add user component's index view
Enter fullscreen mode Exit fullscreen mode

The following commits reflect the actual work that's relevant from another developer's standpoint:

fix view rendering
add user component's edit view
add user component's index view
Enter fullscreen mode Exit fullscreen mode

All commits that amend a previous commit just clutter the history and should be squashed. The commit "fix typo in index view" for example should be squashed together with "add user component's index view".

To clean up the history, we could manually interactively rebase the commits before merging the branch. Imagine though that you may have many commits and later in the process, you won't remember which ones should be squashed together. Also, it's a lot of manual work to mark the relevant commits in the interactive rebase mode.

The fixup workflow

Git includes everything required to automate this. So let's redo the previous hack session with our new toolset:

# coding the user component's index view

$ git commit -m "add user component's index view"

# coding the user component's edit view

$ git commit -m "add user component's edit view"

# updating the component's index view so it actually works

$ git commit --fixup <COMMIT HASH OF THE COMMIT "add user component's index view">

# a typo is noticed in the index view

$ git commit --fixup <COMMIT HASH OF THE COMMIT "add user component's index view">

# fix a bug in the view rendering

$ git commit -m "fix view rendering"

$ rubocop
$ yarn lint

# fix linting errors, assuming the linting error was introduced in the commit
# "add user component's edit view"

$ git commit --fixup <COMMIT HASH OF THE COMMIT "add user component's edit view">

# team members do a code review on the PR / MR

$ git commit --fixup <COMMIT HASH OF THE COMMIT "add user component's index view">
Enter fullscreen mode Exit fullscreen mode

The resulting Git log looks like this:

fixup! add user component's index view
fixup! add user component's edit view
fix view rendering
fixup! add user component's index view
fixup! add user component's index view
add user component's edit view
add user component's index view
Enter fullscreen mode Exit fullscreen mode

Instead of regularly committing (and also writing a commit message) we use the --fixup flag to create fixup commits.

Now, before merging the merge request, we issue an interactive rebase with the --autosquash flag.

Note:
GitLab marks MRs that include fixup commits as WIP, so merging is prevented if you haven't squashed.

$ git rebase --interactive --autosquash \
  <COMMIT HASH OF THE COMMIT "add user component's index view">~1
Enter fullscreen mode Exit fullscreen mode

We'll enter interactive rebase mode with the relevant commits already marked for fixup:

pick 364003b add user component's index view
fixup afa6970 fixup! add user component's index view
fixup 1da5d7c fixup! add user component's index view
fixup c998b08 fixup! add user component's index view
pick d9731b5 add user component's edit view
fixup 33d6080 fixup! add user component's edit view
pick 73e8a6a fix view rendering
Enter fullscreen mode Exit fullscreen mode

The resulting Git history looks like this:

fix view rendering
add user component's edit view
add user component's index view
Enter fullscreen mode Exit fullscreen mode

The final result is a very consistent and readable Git history, where every other developer knows what happens, without the uninteresting sidesteps you took while developing.

Summary

In summary, the following two essential Git commands are necessary to make use of the Git fixup workflow:

$ git commit --fixup <COMMIT THAT NEEDS FIXING>
$ git rebase -i --autosquash <FIRST COMMIT THAT NEEDS FIXING>~1
Enter fullscreen mode Exit fullscreen mode

Bonus: Create Git aliases

If you start adopting this workflow, you'll have to type a lot in your terminal. At this point it makes sense to create some Git aliases to ease your brain and hands.

[alias]
    cif = commit --fixup
    ri = rebase -i --autosquash
Enter fullscreen mode Exit fullscreen mode

More bonus: Global autosquash config

Instead of having to provide the --autosquash flag the configuration can be applied globally. The rebase command still requires -i though.

$ git config --global rebase.autoSquash true
Enter fullscreen mode Exit fullscreen mode

Edit (2018-09-18)

I wrote two git scripts git fixup and git squash to support this workflow and added a blog post describing them.

Latest comments (3)

Collapse
 
fantomx1 profile image
FantomX1

The texting <FIRST COMMIT THAT NEEDS FIXING>~1 is not quite obvious, that it is the parent or the previous commit of the commit that needs fixing, otherwise thanks, well put article

Collapse
 
kwstannard profile image
Kelly Stannard

Hey, I got linked here from a post I just wrote. If you don't mind, I expanded on this with --squash and improved aliases.

dev.to/kwstannard/how-to-plan-an-i...

Collapse
 
ferricoxide profile image
Thomas H Jones II

Even better, if you've also set up for doing signed-commits (inclusive of "must sign commits" on your protected-branch, set up your --fixup/--squashalias to include-c commit.gpgsign=false`.