我刚做了一个“git-pull--rebase”,除了最后几行之外,一切看起来都很好:

> 5 files changed, 62 insertions(+), 10 deletions(-) Current branch master is up to date.
> Path/.git/REBASE_HEAD does not exist
> Path/.git/rebase-apply does not exist

我应该担心这个吗?
如何还原还原还原头并应用还原?
谢谢

最佳答案

除非在重新定位期间发生冲突,否则无法还原它们:
rebase_head是交互式rebase中的当前修补程序,或者当rebase因冲突而停止时
rebase apply是原来的分支(在被rebase之前)
如果在git pull的rebase阶段没有看到任何冲突,可以忽略该消息。

09-04 11:25
查看更多