在将一个存储库变基到另一个远程存储库后修复分离的头

fix detached head after rebase of one repository to another remote repository

在做了 rebase 和几次 git rebase --continue 之后,我的头脑变得超然了。 我的目标是将我在 origin 远程 my-feature 分支中的本地提交推送到 github 远程中的 master 分支。有什么解决办法吗?

完成变基,直到您的状态未达到 git rebase --continue

如果仍然分离,在分离的位置创建一个临时分支:

$ git branch tmp

然后将tmp推送到github上的master分支:

$ git push github tmp:master