How to Tidy Up Your Merge Requests With Git – DZone Open Source | xxxHow to Tidy Up Your Merge Requests With Git – DZone Open Source – xxx
菜单

How to Tidy Up Your Merge Requests With Git – DZone Open Source

一月 31, 2019 - MorningStar

Over a million developers have joined DZone.
How to Tidy Up Your Merge Requests With Git - DZone Open Source

{{announcement.body}}

{{announcement.title}}

Let’s be friends:

How to Tidy Up Your Merge Requests With Git

DZone’s Guide to

How to Tidy Up Your Merge Requests With Git

If you’ve been having some trouble with the cleanliness of the merge requests you’ve been getting, do a little housekeeping with this article.

Feb. 21, 19 · Open Source Zone ·

Free Resource

Join the DZone community and get the full member experience.

Join For Free

I’ve worked on a lot of open source projects and one thing they all have in common is when you create a merge request (or pull request) they will often ask, "Can you clean up your request?" because commits like fix typo should not be included in a Git history.

Now there are a few ways of cleaning up commits and I’ll show you what I have found to be the easiest way.

Below is an example scenario where I use a feature of Git that has saved me a lot of time. I have a tiny project seen in the image below.

How to Tidy Up Your Merge Requests With Git - DZone Open Source

Now I like to run my main.py in a test environment to see if it works as expected. I like to do that by configuring a .gitlab-ci.yml to run main.py. Although this is extremely easy, for this example I made sure I increased the number of commits to illustrate my example a bit more clearly. So after some time, my commit history looks like this:

How to Tidy Up Your Merge Requests With Git - DZone Open Source

Here, you can see my first three commits add README.md, main.py and .gitlab-ci.yml. A few commits update my gitlab-ci file, trying some stuff out, and fixing typos. There’s also a commit that cleans up my gitlab-ci and two more to fix and clean up main.py.

Now some of you might see this and think, "Looks good," while others might want to scream at me for making a mess out of my commits.

How do we fix it?

First, let’s revert the last two commits using reset. We don’t want to lose our changes so we will use git reset --soft HEAD~2. --soft will keep our changes of the files and HEAD~2 tells Git the two commits from HEAD position should be reverted.

We create a new commit, git commit --fixup 6c29979. This will create a commit called fixup! Add main Python file. When we run git rebase -i --autosquash 24d214a we can see below that our fixup commit has been moved below the commit we referenced with the tag 6c29979. I could save this and the fixup will be merged into the commit above.

How to Tidy Up Your Merge Requests With Git - DZone Open Source

But if we look at the commits below the fixup, we see that all the commits are related to the .gitlab-ci.yml and by making a small change here, we can clean up my commits in a single go. We will change the pick to fixup for all commits but Add default gitlab-ci (shown in the image below) and we will save this.

How to Tidy Up Your Merge Requests With Git - DZone Open Source

Checking our Git log, we see that our long list of commits has been reduced to just three. There is a big change that you should be aware of: because I have just rewritten my Git history I will have to use git push --force to update any remote repository.

How to Tidy Up Your Merge Requests With Git - DZone Open Source

This looks a lot better now; only the relevant commits are left. But could we have prevented this while working on this feature? The answer is yes.

We could have used git commit --amend to add almost every commit behind 19d8353 Add default gitlab-ci. This wouldn’t require any new commit for any changes that we were making to our .gitlab-ci.yml file. We would have ended up with the following and we already know how to handle the fixup.

How to Tidy Up Your Merge Requests With Git - DZone Open Source

Something to keep in mind when using features that rewrite the history of your Git repository: If you already pushed your previous commits to a remote repository you will have to use git push --force to overwrite the history of the remote repository. Bad use of this could cause serious problems, so be careful! If you run into trouble, a useful guide that could help you recover from this is, "git push -force and How to Deal with It."

Topics:
open source ,git ,merge requests ,git commands

Published at DZone with permission of

Opinions expressed by DZone contributors are their own.

{{ parent.title || parent.header.title}}

{{ parent.tldr }}

{{ parent.linkDescription }}

{{ parent.urlSource.name }}

· {{ parent.articleDate | date:’MMM. dd, yyyy’ }} {{ parent.linkDate | date:’MMM. dd, yyyy’ }}


Notice: Undefined variable: canUpdate in /var/www/html/wordpress/wp-content/plugins/wp-autopost-pro/wp-autopost-function.php on line 51