How to perform a Git clean up of branches and commits example

How to perform a Git clean up of branches and commits example

 

How to perform a Git clean-up of branches and commits example

Git branch cleanup

Things accumulate over time, and version control systems can be subject to the same hoarding tendencies that haunt people in their everyday lives. Developers aren’t immune to clutter, and the same can be said about their Git repositories.

There comes a point where a Git cleanup must happen. Branches, commits and repositories require a good trim occasionally. In this Git clean-up tutorial, we’ll demonstrate how to take a moderately messy repository and reduce it to only a few commits.

Disambiguation note: If you were looking for information on the git clean command, look at our tutorial on how to git clean untracked files.

Clean up Git commits

The first order of business with any Git cleanup operation is to squash any lengthy commit histories. In this example repository, there’s only one unshared commit on the master branch, but multiple on feature and develop branches. A developer can use the interactive Git rebase tool to squash all commits on a given branch down to one.

developer can use the interactive Git rebase tool to squash all commits on a given branch down to one.

git clean up diagram

These commits and branches will be the target of the Git clean up..

cleanup@git:~$ git clone https://gitlab.com/cameronmcnz/squash-commits-example.git git-clean-up
cleanup@git:~$ cd git-clean-up
cleanup@git:~$ git checkout develop 
cleanup@git:~$ git log --graph --branches --oneline
cleanup@git:~$ git rebase --interactive HEAD~5

In the interactive rebase tool, the commit named E dev is set to be the target of the squash by pre-pending the word ‘pick’ next to it. The letter ‘s’ or the word ‘squash’ is pre-pended to all other commits to indicate they will be removed.

rebase to clean up Git

The interactive rebase tool is a great way to help you clean up Git commits and branches.

When the rebase commits, a successful Git cleanup of the develop branch’s commits occurs and squashes them all into one. The new Git commit created in the process is given the name E’.

The same Git cleanup also needs to be performed on the three commits in the feature branch. Developers don’t need to use the HEAD~ syntax, either. It’s perfectly acceptable to simply reference the hash ID of the commit from which the branch diverged. In this case, that ID is 953f018.

rebase and merge clean up

Each branch has squashed commits, but the code must still be merged.

A developer can initiate the Git clean-up on the feature branch with the following commands:

cleanup@git:~$ git checkout feature
cleanup@git:~$ git rebase --interactive 953f018

At this point, the individual branches have been cleaned up, but none of the code has been synchronized through a merge. With three branches, four rebase operations will completely synchronize each branch and ensure that no code will be lost in any future Git cleanup operations.

The Git rebase merge

The four rebase commands needed to synchronize all three branches are:

cleanup@git:~$ git rebase feature develop
cleanup@git:~$ git rebase develop master
cleanup@git:~$ git rebase master feature
cleanup@git:~$ git rebase feature develop
multiple Git rebase clean

Repeated rebase commands help to clean up commits and flatten branch histories.

Clean up Git branches

There’s really no need to have three branches that point to the same commit. A developer can identify a Git branch clean-up task that deletes features and develops with a hard D:

cleanup@git:~$ git branch -D feature
cleanup@git:~$ git branch -D develop

rebase git clean up

The deletion of unused branches is a smart Git clean-up task.


Git rebase vs merge

If anyone wonders why I performed four bases instead of just merging the development and feature branches into the master before I deleted them, I don’t have a good response other than to quote Donald Trump and say “merges are for losers.”

But yes, merging would have been easier and would have been a simpler way to arrive at this point in the Git cleanup. But I doubt you’ll ever see another Git tutorial that does four bases in a row, which is a reason in itself to do it.

A developer can run the following commands instead of rebase and delete.

erge@loser:~$ git checkout master
merge@loser:~$ git merge feature
merge@loser:~$ git merge develop
merge@loser:~$ git branch -D feature 
merge@loser:~$ git branch -D develop

One last Git squash rebase

Finally, with no other branches hanging around, you can once again squash the entire master branch down to two commits. Also, it’s more common to use the -i switch rather than the long-winded rebase–interactive. During the interactive rebase, name the new commit base’.

cleanup@git:~$ git rebase -i HEAD~4

After the rebase, the Git repository will have been reduced to two lonely commits.

If a developer uses Git Flow, they might want to resurrect the develop and feature branch names at this time.

cleanup@git:~$ git branch develop
cleanup@git:~$ git branch feature

When these two operations are complete, the repository has been reduced to two commits, with all three branches pointing at the same one.

Developers should also note that all the files contained in the tips of the original three branches reside in the base’. Commits and branches have been removed, but every file has been retained and no files have been lost. Every file present at the tip of the three branches before this Git clean-up began is in base.’

git clean up before after

Compare the repo before and after the Git cleanup.

Git garbage collection

With all the Git cleanup operations complete, it’s time to take out the trash. Developers can force a Git garbage collection routine to dispose of all the deleted branches and commit:

cleanup@git:~$ git gc --aggressive

And that’s how to clean up Git branches and commits.

A developer can also squash Git commits on the development branch. They will need to first perform a checkout and then invoke the ‘git rebase’ command with a reference to the number of commits on the branch:










    Reactions

    Post a Comment

    0 Comments

    close