我执行了这样的rebase:
git rebase --onto master new_background_processing export_background_processing
那没有达到我想要的效果,所以我执行了重置:
git reset --hard HEAD@{1}
我让我的分支恢复到原来的状态,但是当我输入 git status 时我收到了这条消息:
# You are currently rebasing branch 'export_background_processing' on 'e378641'.
如何完全取消该变基?不确定这本身意味着什么。
使用git rebase --abort. 来自官方 Linux 内核文档git rebase:
git rebase --abort
git rebase
git rebase --continue | --skip | --abort | --edit-todo | --quit