Async request processing in Spring MVC

GitTricks: How to keep your history clean

Git commits are fundamental to any Git repository. Each commit represents a snapshot of changes in your project and ideally comes with a message explaining the nature of those changes.

As projects evolve, whether through adding features, deprecating old ones, fixing bugs, and so on; these changes are recorded in commits. But without proper commit management, the history can get messy, making it difficult to track the evolution of your project.

In this post, we will see some tricks to help you maintain a clean and readable git log that benefits both you and your team.

Why should I care About Git history?

Have you ever seen a git history like this?

blog/keep-git-history-clean/messy-history.png

This log does not say too much about the changes. You can see the experiments done by the developer, bugs discovered and fixed along the way, and non-descriptive commit messages. Now, imagine reviewing a PR with these commits, it’s harder than it should be.

Also, consider a situation where you’re investigating a bug and checking the commit history. This history is full of noise, making it hard to pinpoint relevant changes.

When we develop, it’s normal to experiment, maybe we’re trying out a new library or exploring different approaches to solving a problem. But our back-and-forths during development don’t need to be preserved in the project’s history, right?

The first part of a cleaning history is to clean your branches, but what happens when you merge your changes with your colleague’s changes?

Problem with Merging: History Chaos

When working in a team, you often need to pull in changes from your teammates. The simplest way to incorporate these changes is to merge their branch into yours. However, merging has its drawbacks:

  • It creates additional "merge commits" that clutter your branch with commits that often have no meaningful content.

  • It mixes your commit history with your teammates, making it harder to follow the progression of your changes.

How many times have you seen a git log like the following?

blog/keep-git-history-clean/history-caos.png

Even in such a small project with just a bunch of commits, it is difficult to know when and what has been added to the main branch.

Also, in this example, there are 6 merge commits from a total of 23 commits, which means 26% of commits are merge commits.

If you are curious about the percentage of merge commits in one of your branches, you can use the following command:

    git log your-branch --pretty=%P | awk '{if(NF>1) merge++} END {print merge/NR*100 "%"}
  

How Can We Achieve a Cleaner History?

Disclaimer: The tricks we’re about to explore involve modifying your Git history. This can be risky if others are working on the same branch, so avoid doing this on shared branches like main or develop.

Many platforms, such as GitHub or Bitbucket, offer branch protection to prevent accidental history changes.

Rebasing

Rebasing is a way of integrating changes from one branch into another without creating merge commits. Instead of merging, a rebase rewrites your branch’s history by putting your commits on top of the other branch’s commits.

blog/keep-git-history-clean/before-rebase.png blog/keep-git-history-clean/after-rebase.png

In the images above, you can see that we are rebasing the experiment branch into the master branch.

This operation works by going to the common ancestor of the two branches (the one you’re on and the one you’re rebasing onto), getting the diff introduced by each commit of the branch you’re on, saving those diffs to temporary files, resetting the current branch to the same commit as the branch you are rebasing onto, and finally applying each change in turn (check the [official documentation] for more details)

Let’s see an example:

blog/keep-git-history-clean/rebase-example-1.png

You are developing a new feature in your branch called “feature-7” but, in the middle of your development, a new commit has been added to the main branch. It is a common situation inside a team.

In order to keep a clean history, you want to put your changes ahead of the last changes of the main branch, so, let’s rebase your changes.

Get all the changes from the main branch:

    git pull origin main –-ff-only
  

Now checkout to your branch:

    git checkout feature-7
  

And now, let’s rebase your changes with the main branch:

    git rebase main
  
blog/keep-git-history-clean/rebase-example-2.png

Now your changes are ahead of the main branch changes:

blog/keep-git-history-clean/rebase-example-3.png

Now, you can merge your changes to the main branch by a fast-forward merge, avoiding the merge commit.

    git checkout main
git merge feature-7 –-ff-only
  

Your git history looks like this:

blog/keep-git-history-clean/rebase-example-4.png

No merge commits, no mixed commits, and the commit order reflects the actual development flow.

Handling Conflicts

Like in a regular merge, rebasing could have conflicts. When this happens, git will stop the rebase at the commit that causes the conflict.

You can resolve the conflicts as you normally do and then continue with your rebase by doing:

    git rebase --continue
  

In case you want to abort it, you can do:

    git rebase --abort
  

Rebasing on Remote Repositories

Most of us work by sending PRs to remote repositories. Platforms like GitHub and Bitbucket have options to rebase the PR changes on top of the target branch. Let’s see the previous example but sending our “feature-7” through a PR:

Remember, we have our “feature-7” branch rebased with the main branch:

blog/keep-git-history-clean/rebase-example-3.png

Now we create a PR and we can see the options that GitHub offers to us

blog/keep-git-history-clean/github-rebase.png

If we rebase and merge, our commits will be ahead of the main branch commits. It is something that we have already done locally but while we are doing the process to merge this branch into the main branch (reviews, builds checks, etc) other commits can be added to the main branch.

If we choose the rebase option, it will produce the same result as when we performed the merge locally.

blog/keep-git-history-clean/github-history.png blog/keep-git-history-clean/github-rebase-local.png

No merge commits, no mixed commits, and the order represents the order in which the changes have been merged into the main branch.

Note: It is possible to set rebase as the default merge mechanism in platforms like GitHub.

Interactive rebase

Interactive rebase is a powerful tool that can be used to merge commits, edit them, rewrite the message, or even delete it.

To execute an interactive rebase, you can do:

    git rebase -i {commit-hash}
  

or

    git rebase -i HEAD~X
  

Where X is the number of commits. It also provides a self-explanatory page when doing a rebase:

blog/keep-git-history-clean/interactive-rebase-info.png

Let’s jump into the first messy log:

blog/keep-git-history-clean/messy-history.png

We have a finished branch containing all our experiments and failures. As we want to make our lives easier in the future, we are going to reorganize our branch history. Let’s start!

First, let’s combine some of the “fix” commits with their original commits. So:

    git rebase -i HEAD~6
  
blog/keep-git-history-clean/interactive-rebase-example-1(1).png

We use the “f” option to squash the commit into the previous one keeping the previous message. This is our current status:

blog/keep-git-history-clean/interactive-rebase-example-2(1).png

Note how the hashes have changed.

Next step, let's delete the revert commit by never doing that change:

    git rebase -i HEAD~5
  
blog/keep-git-history-clean/interactive-rebase-example-3(3).png

Note that we directly delete the commits. This results in:

blog/keep-git-history-clean/interactive-rebase-example-4(4).png

Now, these commit messages don't clearly explain what we're doing. Let’s reword them:

    git rebase -i HEAD~3
  
blog/keep-git-history-clean/interactive-rebase-example-5.png

We use the “r” option to reword the commit message. This will open the default editor:

blog/keep-git-history-clean/interactive-rebase-example-6.png

We change the message to whatever we want. This is the final result:

blog/keep-git-history-clean/interactive-rebase-example-7.png

Now our branch looks cleaner and can be used to send a PR with it (after rebasing our changes with the remote repository).

Conclusion

Keeping your git history clean is essential to have a readable and maintained repository. Using the tricks explained above you will:

  • Help your team (and reviewers) understand the steps you took during development but avoid the pollution of your failure experiments during the development.

  • Keep a logical commit order, which is beneficial for future maintenance.

  • Simplify bug tracing and make rollbacks less painful.

Use these techniques wisely, especially on shared branches, to maintain a cleaner and more manageable Git history!

test
Luismi Barcos
Software Engineer

Luismi is a Software Engineer at Celonis and a proud member of the APInauts team. He specializes in advancing Intelligence REST APIs to enable seamless third-party integrations.

A backend expert passionate about Java and Kotlin, and a big fan of functional programming, he consistently delivers high-quality APIs by adhering to best practices and driving innovation.

Dear visitor, you're using an outdated browser. Parts of this website will not work correctly. For a better experience, update or change your browser.