我想通过git rebase --abort
对交互式rebase进行中止,但我收到了错误:
fatal: Could not parse object '7af12fc7e6ea2bb5231abe39c59cec9539f9536f'.
我已经尝试重置头部并没有帮助。有什么想法吗?
答案 0 :(得分:1)
您也可以使用此方法中止rebase。将<branch>
替换为您正在变构的任何分支:
cd .git
rm -rf rebase-merge
cd ..
git checkout <branch>
即,进入.git
目录,删除rebase目录,返回存储库(现在处于分离的HEAD状态)并签出分支(将HEAD移动到分支提示)。