被切换的分支

编程

首先怀疑的情况是,feature分支可能本身就是基于开发中的分支创建的。在网上查看到了下面这条命令:

git reflog -date=local | grep "support-college"

从这个命令的输出结果中截取展示一部分,初看感觉是一个分支切换记录,仔细想想又像是操作的明细记录:

741a1051 HEAD@{147}: merge support-college: Merge made by the "recursive" strategy.

fcccbec3 HEAD@{174}: commit (merge): Merge branch "support-college" into develop

cfba2c43 HEAD@{207}: checkout: moving from support-college to only-for-local-fuhui

5798770b HEAD@{208}: checkout: moving from master to support-college

不过从moving from master to这里推测,大概率是从master分支拉的新分支。

然后怀疑,是不是在中途操作的过程中,merge分支的方向反了。但是没有办法得出结论。

以上是 被切换的分支 的全部内容, 来源链接: utcz.com/z/514341.html

回到顶部