撤消 git merge(尚未推送)

发布于 2024-11-06 05:04:38 字数 333 浏览 5 评论 0原文

我只是将一些更改提交到我的功能分支之一(“feedback_tab”),然后签出“master”并将它们合并到那里。我实际上打算将它们合并到我的“开发”分支中。

现在,master 领先于“origin/master”(其远程)17 个提交 - 我还没有推动合并(显然也不想这样做)。如何将 master 恢复到意外合并之前的状态?我对 git revertgit Reset 与这些东西感到困惑。

我查看了 git 日志,没有将 Feedback_tab 合并到 master 的条目。我以为这会是顶部条目?

有点困惑:/欢迎任何帮助!最大限度

I just committed some changes into one of my feature branches ("feedback_tab") then, checked out "master" and merged them in there. I actually meant to merge them into my "development" branch.

Now, master is ahead of 'origin/master' (its remote) by 17 commits - I haven't pushed the merge up (and don't want to, obviously). How can I revert master back to the same state as before the accidental merge? I'm confused between git revert and git reset with this stuff.

I looked in my git log and there's no entry for merging feedback_tab into master. I'd have thought it would be the top entry?

Bit confused :/ any help welcome! max

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

陌上青苔 2024-11-13 05:04:38

要撤消未推送的合并:

git reset --merge ORIG_HEAD

如果在合并期间发生冲突,撤消合并的最佳方法是:

git merge --abort

To undo a merge that was NOT pushed:

git reset --merge ORIG_HEAD

If during the merge you get a conflict, the best way to undo the merge is:

git merge --abort
他不在意 2024-11-13 05:04:38

git reset --hard HEAD~17 让您比 master 的 head 早 17 个提交。 git rebase -i HEAD~17 可能也摆脱了额外的提交。

git reset --hard HEAD~17 takes you back 17 commits ahead of the head of master. git rebase -i HEAD~17 probably gets rid of the extra commits as well.

我是男神闪亮亮 2024-11-13 05:04:38

摘自git重置

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>

Taken from 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>
維他命╮ 2024-11-13 05:04:38

这个一定会成功的!

git reset --hard HEAD~1 
git init

第一个将恢复您最近所做的更改(合并)
第二个会将存储库初始化为最新版本(因此将快进到原始版本的最新版本)

我已经尝试过

git reset --merge

,但没有成功。

This one will surely work!

git reset --hard HEAD~1 
git init

The first one will revert the changes you recently made (the merge)
the second will init the repo to latest (therefore will fast forward to latest on origin)

I've tried

git reset --merge

but it didn't do the trick.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文