git 还原合并_如何在Git中还原合并

git 还原合并

I merge a branch, say b1, from another branch, say b2. Both b1 and b2 have some commits.

我从另一个分支b2 合并了一个分支b1。 b1和b2都有一些提交。

Say,

说,

b1: c1 --->  c2 ---> c3
b2: c1 --->  c4 ---> c5

Now, if I merge b2 to b1 and there is no conflicts, b1’s history includes b2’s commits (c4, c5).

现在,如果我将b2合并到b1并且没有冲突,则b1的历史记录将包括b2的提交(c4,c5)。

How to revert this merge in Git?

如何在Git中还原此合并?

You can revert/undo the merge (a successful one as in the question) by

您可以通过以下方式还原/撤消合并(在问题中是成功的合并):

$ git reset --hard ORIG_HEAD

But be aware that running git reset --hard ORIG_HEAD will let you go back to where you were, but it will discard your local changes, which you do not want. git reset --merge keeps your local changes.

但是请注意,运行git reset --hard ORIG_HEAD将使您返回到原来的位置,但是它将丢弃您不需要的本地更改。 git reset --merge保留您的本地更改。

Two more examples from the git reset man page:

git reset手册页中的另外两个示例:

Undo a merge or pull

       $ git pull                         (1)
       Auto-merging nitfol
       CONFLICT (content): Merge conflict in nitfol
       Automatic merge failed; fix conflicts and then commit the result.
       $ git reset --hard                 (2)
       $ git pull . topic/branch          (3)
       Updating from 41223... to 13134...
       Fast-forward
       $ git reset --hard ORIG_HEAD       (4)

   1. Try toupdate from the upstream resulted in a lot of conflicts; you were not ready to spend a lot of time merging right now, so you decide to do that later.
   2. "pull" has not made merge commit, so "git reset --hard" which is a synonym for "git reset --hard HEAD" clears the mess from the index file and the working tree.
   3. Merge a topic branch into the current branch, which resulted in a fast-forward.
   4. But you decided that the topic branch is not ready for public consumption yet. "pull" or "merge" always leaves the original tip of the current branch in ORIG_HEAD, so
   resetting hard to it brings your index file and the working tree back to that state, and resets the tip of the branch to that commit.

Undo a merge or pull inside a dirty working tree

       $ git pull                         (1)
       Auto-merging nitfol
       Merge made by recursive.
        nitfol                |   20 +++++----
        ...
       $ git reset --merge ORIG_HEAD      (2)

   1. Even if you may have local modifications in your working tree, you can safely say "git pull" when you know that the change in the other branch does not overlap with them.
   2. After inspecting the result of the merge, you may find that the change in the other branch is unsatisfactory. Running "git reset --hard ORIG_HEAD" will let you go back to
   where you were, but it will discard your local changes, which you do not want. "git reset --merge" keeps your local changes.
Answered by anonymous.
匿名回答。

翻译自: https://www.systutorials.com/how-to-revert-a-merge-in-git/

git 还原合并

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值