如果--abort不起作用,如何中止交互式变基?


127

我已经通过交互式资源库陷入混乱,现在我想中止它。(即回到我进入交互式rebase模式之前的位置,以我为例,通过git pull --rebase)。方法似乎是通过git rebase --abort,但这不起作用:

$ git rebase --abort
error: Ref refs/heads/master is at 55b388c141b1485b1acd9e050dbeb0eb90ef2ee7 but
expected b918ac16a33881ce00799bea63d9c23bf7022d67
fatal: Cannot lock the ref 'refs/heads/master'.
Could not move back to refs/heads/master

如何摆脱交互式变基模式,并清理所有对此模式的引用?(git reset --hard成功,但不会使我退出重新设置基准的模式。)

Answers:


83

尝试遵循在屏幕上看到的建议,然后首先将主机的HEAD重置为所需的提交。

git update-ref refs/heads/master b918ac16a33881ce00799bea63d9c23bf7022d67

然后,再次终止变基。


43
我认为,对负责可怕的Git UX的人来说,称“建议”是最不当的赞美
Marco Faustinelli
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.