Automate the cleanup of my feature branch with Git Autosquash

Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated 5 years ago

We work on our feature branch and commit a lot, also knowing we’ll have to do an interactive rebase to clean up our history once we’re done. Well, we could also automate that cleanup step to some degree, using Git’s autosquash feature. Let’s have a look.

Instructor: [00:00] Assume we're working in that app refactoring branch and we want to make a couple of changes very quickly, and so we commit continuously after each change. Of course, in the end, we could then do an interactive rebase to clean up our history again and merge it in. However, we can also automate those steps using the fixup flag. Let's see how that works.

[00:21] I have here editor open on that README which is inside our Git repository. Let's say we want to clean it up. We want to have some instructions for the installation and setup. We might have to interrupt our work and we want to continue later on.

[00:35] What I do is I create, first of all, a normal commit with a proper commit message, update README. With that, we have that updated README already here present. Later, we continue with step one. Let's say clone the repo as a first step, and so on.

[00:59] This is just a first commit message of a series of commit messages which will go into updating that README. What I really want to have is that all of these commits should finish up in that update README commit message, which I've created before.

[01:12] I could obviously commit all of these separately, and then in the end do a Git rebase and cleanup my history, but what I would like to do since I already know these should be discarded and merged into their specific commit, I can tailgate that upfront.

[01:26] What we do is we do a normal add such that our file gets into the staging area, and then we do a Git commit -- and do pass that fixup, and we give Git here that identifier of the commit messages to which these should be merged automatically later on. Let's inspect the history again.

[01:46] You can now see we have that update README, and then we have that fix up exclamation mark on top of it. Let's continue. Let's create here step two, installation to install the dependencies, npm install.

[02:01] Again, we do the same thing. We could do again pick up here our commit hash and then have that fixup applied and merged into the commit message we want in the end.

[02:12] Again, we do a git add and then we do a git commit -- fixup just as we did before, but instead of giving it right here after commit, we can say search wherever there's an update text in the commit message and apply the fixup on top of that one. It will take the last one, in this case, it will fix it up on top of the other one which we created before.

[02:34] Let's run the command. Let's see the log again. You can now see we have here the first fixup, and then we have another one on top of this one. In the meantime, we might not continue on that README. Why don't we go, for instance, on the app.html and we do some other work.

[02:49] For instance, say here we add here a class right here, a full section for our application. We create a normal commit message at app folder, which then goes on top of our commit messages here. Then we resume our work. We go here and we say like step three, execute the tests npm test.

[03:11] This one we would again want to have on top of that update README. We can again use a git add and then we use that to fixup which we added before, which is still valid. If we execute that, we will then have the update README, a couple of fixups which we did initially, and then our app at app folder commit message between.

[03:32] Then we have another fixup, which will then be applied on top of this one. What we would like to do now is to automatically clean all of these up up until this point here.

[03:42] We can do a Git rebase interactive, and we do an autosquash up until this point here. Let's execute this. Now you can see that Git enters in this interactive rebase mode. It picks the first one, which is the correct one, which we actually want to take and keep, and then it has all the fixups already in place here for the commits which we have added before.

[04:04] You can also see that it rearranged the commit messages. This one was actually the last commit which we made. We set Git it should pull that on top of the update commit README message. It has also reorganized here our commit messages.

[04:19] Let's save everything. If we do now get log, we can see that our history has been cleaned up automatically.

egghead
egghead
~ an hour ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today