小编典典

完全取消rebase

all

我执行了这样的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'.

如何完全取消该变基?不确定这本身意味着什么。


阅读 79

收藏
2022-03-23

共1个答案

小编典典

使用git rebase --abort. 来自官方 Linux 内核文档git rebase

git rebase --continue | --skip | --abort | --edit-todo | --quit
2022-03-23