JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Recovering a conflicting Git merge

Author:JIYIK Last Updated:2025/04/02 Views:

This article explains the revert command when a merge conflict occurs git merge. We will also take a quick look at how to undo a git merge that was successful and has been pushed to a remote repository.


Recovering a conflicting Git merge

In this section, we will use an example as described below.

Our repository has master and feature branches. We will edit the README.md file in both branches so that merging master into feature will cause a conflict.

After running git mergethe command, we should get something similar.

git merge

To undo such a merge, we can run git merge --abortthe command as shown below.

$ git merge --abort

This command will reset our repository to its previous state before the merge. It should even recover uncommitted changes, although unreliably.

Also, only a newbie would merge a branch with uncommitted changes.

We can also use git reset --mergethe command, which has the git merge --abortsame effect as the command.

$ git reset --merge

Another handy command is git reset --hard. It will unmerge as well as merge in any changes introduced to your working copy.

What if we want to undo a successful merge?

First, we need the commit hash of the merge. We can run the git log --oneline command to list the commits in our repository.

We will then copy the hash of the merge commit as shown below.

git log –oneline

After the merge commit, we will use git resetthe -m command with the commit hash. In simple terms, the commit is at HEAD@{1}.

$ git reset --hard c315395
HEAD is now at c315395 Trial2

Alternatively, we can run git resetthe command as shown below.

$ git reset --hard HEAD~1

This will rollback our repository by a single commit.

In the case where we pushed the merge to the remote repository, how can we recover the same content?

If we have already pushed the changes, we have to create a commit to revert the merged changes and push them to the remote repository as shown below.

$ git revert -m 1 08396d4

This will revert the changes introduced by the merge. We have already used the git revert command with the commit hash of the merge commit.

Now we can push our changes to the remote to revert the merge.

In short, Git allows you to unmerge when conflicts arise. The git reset --mergeand git merge --abortcommands come in handy in situations like this.

If our merge was successful and we have pushed our changes to the remote, we will have to create a new commit to undo the changes introduced by the merge.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Push to a specific branch in Git

Publish Date:2025/04/02 Views:53 Category:Git

In Git, we use branches to develop independent features directly from the main workflow of the project. Since Git is considered to be the best version control system so far, we have local and remote branches in our repository for different

Solve the Git Push Everything Up-To-Date Problem

Publish Date:2025/04/02 Views:120 Category:Git

Git is a free, open source version control system designed to work with projects quickly and efficiently. You can make changes to your repo and push them to master branches. This article explains how to use git push the command to resolve e

Git merge development branch into feature branch

Publish Date:2025/04/02 Views:126 Category:Git

Creating new branches and merging them is considered to be the most powerful tool of Git. The ability of Git to create new branches and merge them into the development code is very useful for developers working in a team environment. This f

Understanding Git conflict markers

Publish Date:2025/04/02 Views:112 Category:Git

In this article, we will discuss git conflict markers. Understanding Git conflict markers When pulling changes from a remote repository, you may encounter merge conflicts. Merge conflict files can sometimes be confusing. A typical merge con

Selectively merge changes from different branches in Git

Publish Date:2025/04/02 Views:116 Category:Git

This article will discuss merging specific changes from one branch to another. As we know, when merging branches, Git merges all files without exception. You may find yourself in a scenario where you have some commits in one branch and you

Complete the merge after resolving conflicts in Git

Publish Date:2025/04/02 Views:63 Category:Git

This article describes the process of completing a merge after resolving merge conflicts in Git. We will go through the merge steps, resolve the conflicts, and complete the merge. Complete the merge after resolving conflicts in Git For a si

Merge the development branch into Master in Git

Publish Date:2025/04/02 Views:167 Category:Git

This article provides an overview of merging a development branch into the master branch. Often we find ourselves creating a branch outside of the master branch for development. Once we are happy with the changes, we can merge them into mas

Pushing an empty commit to a remote in Git

Publish Date:2025/04/02 Views:65 Category:Git

This article will teach you how to push an empty commit to a remote repository. A commit with no changes is an empty commit because it only contains the commit message. This is useful if we need to push changes to a remote branch to trigger

Moving commits to another branch in Git

Publish Date:2025/04/01 Views:201 Category:Git

Git is a very useful and powerful tool in the modern software world. Many types of files and codes can be stored through branches and commits in Git. Branches are a different concept depending on the version control system you use. Many dev

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial