当我跑步时:

git status

我看到了这个:

rebase in progress; onto 9c168a5
You are currently rebasing branch 'master' on '9c168a5'.
(all conflicts fixed: run "git rebase --continue")
nothing to commit, working directory clean

当我这样做的时候:

ls `git rev-parse --git-dir` | grep rebase || echo no rebase

我明白了:rebase-apply

我不能确定起源。

git branch

显示:

* (no branch, rebasing master)
  develop
  master

我卡住了。我不知道该怎么办?真的需要这么长时间来调整基地吗?Git rebase—continue不做任何事情。我没有任何东西在git状态..我只是在等待重新调整。我该怎么办?

UDATE: 这是git rebase——continue的输出

Applying: no message
No changes - did you forget to use 'git add'?
If there is nothing left to stage, chances are that something else
already introduced the same changes; you might want to skip this patch.

When you have resolved this problem, run "git rebase --continue".
If you prefer to skip this patch, run "git rebase --skip" instead.
To check out the original branch and stop rebasing, run "git rebase --abort".

Git添加。无关。


当前回答

我被困在了'rebase status',我

On branch master
Your branch is up to date with 'origin/master'.

You are currently rebasing.
  (all conflicts fixed: run "git rebase --continue")

nothing to commit, working tree clean

但是运行git rebase——skip产生错误:无法读取'。git/rebase-apply/head-name':没有这样的文件或目录。

运行rm -fr”。git / rebase-apply”帮助。

注意:当然,只有在你不关心重基的时候,或者你被困在以前的重基上,你不想再这样做了。

其他回答

我的是BitBucket弹出的一个错误。我跑了,斯吉普把它修好了。

我也面临着同样的问题,在我的情况下,当我试图重新建立基础时,我得到了冲突,一旦我解决了所有的冲突,并试图添加一个提交消息,但它在我的客户端编辑器中显示这个错误(VS Code)

为了解决这个问题,我们需要触发这个命令git commit -C HEAD@{1}

它将指向你在做rebase之前的提交

有时候在VS代码中仍然会显示rebase正在进行,为了解决这个问题,你需要触发这个命令rm -rf .git/REBASE_HEAD

rm -rf .git/REBASE_HEAD将从您的本地文件中删除“REBASE_HEAD”

我被困在了'rebase status',我

On branch master
Your branch is up to date with 'origin/master'.

You are currently rebasing.
  (all conflicts fixed: run "git rebase --continue")

nothing to commit, working tree clean

但是运行git rebase——skip产生错误:无法读取'。git/rebase-apply/head-name':没有这样的文件或目录。

运行rm -fr”。git / rebase-apply”帮助。

注意:当然,只有在你不关心重基的时候,或者你被困在以前的重基上,你不想再这样做了。

我检查了HEAD基地的一个新分支。这工作。

第一步:继续git rebase——继续 步骤2:修复冲突,然后git添加。 回到第1步,现在如果它说没有变化..然后运行git rebase—skip并返回步骤1 如果你只是想退出rebase运行git rebase—abort 一旦所有的修改都完成了,运行git commit -m "rebase complete"就完成了。


注意:如果你不知道发生了什么,只是想回到回购的位置,那么只需执行: 撤退,放弃

阅读有关rebase: git-rebase文档