最佳答案
我通过一个交互式 rebase 让自己陷入了混乱,现在我希望终止它。(例如,回到我被拖入交互式 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
成功了,但是没有让我退出 rebase 模式。)