最佳答案
我执行了一个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'.
我怎么取消这个完全变基?不知道这本身意味着什么。