git rebase and deleted rebasing branches causing “Interactive rebase already started” error message

后端 未结 3 1517
再見小時候
再見小時候 2021-02-12 11:22

I was trying something out with a couple of branches so I rebased on a temporary branch and was in the middle of resolving some conflicts when I decided to not to complete the r

3条回答
  •  心在旅途
    2021-02-12 12:04

    check the git status and see if you not checkout any branch after last rebase then you are not on any branch.

    becase rebase transfer you to a non branch area, so you have to abort the last rebase by using git rebase --abort command and checkout a branch to go on the branch and start new rebasing

提交回复
热议问题