Git 当我收到一条消息:由于组件过载不再存在,该怎么办

Git 当我收到一条消息:由于组件过载不再存在,该怎么办,git,github,Git,Github,我根据以下链接从master更新为本地源代码代表:,并且有更新需要拉到我的代表 所以我用这个: git pull remote master 但现在如果我这样做: git show-branch *master 我得到: $ git show-branch *master * [master] Change references to Component::OnSetAttribute() to Serializable::OnSetAttribute() as the Component

我根据以下链接从master更新为本地源代码代表:,并且有更新需要拉到我的代表 所以我用这个:

git pull remote master
但现在如果我这样做:

git show-branch *master
我得到:

$ git show-branch *master
* [master] Change references to Component::OnSetAttribute() to Serializable::OnSetAttribute() as the Component overload no longer exists.
 ! [refs/remotes/origin/master] Change references to Component::OnSetAttribute() to Serializable::OnSetAttribute() as the Component overload no longer exists.
--
*+ [master] Change references to Component::OnSetAttribute() to Serializable::OnSetAttribute() as the Component overload no longer exists.
这意味着什么:
组件过载不再存在

我应该怎么做才能修复它呢?

当您运行
git show*master
时,它会尝试可视化存储库中以“master”结尾的所有分支的提交图。您引用的消息只是提交消息-作者对更改的描述

如果只可视化主分支的提交图,这一事实可能会变得更清楚,例如:

$ git log --oneline --graph master