收到此错误:
fatal: cannot read object aab1ca8db3ab8f1508db42220f9badc7b62dd4aa 'vendor/plugins/simple_stuff': It is a submodule!
git pull
从主仓库执行时。我没有在我的项目中的任何地方定义任何子模块,但我仍然有另一个 repo 里面vendor/plugins/simple_stuff
。有任何想法吗?
收到此错误:
fatal: cannot read object aab1ca8db3ab8f1508db42220f9badc7b62dd4aa 'vendor/plugins/simple_stuff': It is a submodule!
git pull
从主仓库执行时。我没有在我的项目中的任何地方定义任何子模块,但我仍然有另一个 repo 里面vendor/plugins/simple_stuff
。有任何想法吗?
阅读“ git submodules gotcha ”文章后,您是否尝试过
$ git pull -s resolve
(“解决”合并策略可能能够避免该消息)
(有人可能已经重新组织了源并定义了一个子模块,将其推送到您现在尝试从中提取的远程仓库)