本文介绍了.gitmodules中找不到用于路径和缺少.gitmodules文件的子模块映射的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
运行 git submodule init
时,出现以下错误:
When I run git submodule init
, I get the following error:
我搜索了一个 .gitmodules
I searched for a .gitmodules
file and I cannot find it anywhere.
我已阅读这是最受欢迎的关于同一主题的SO问题。
但不幸的是,我无法解决问题。特别是考虑到我不再有 .gitmodules
。
根据我的GitHub私人回购,我仍然有子模块我的存储库。只是我无法在任何地方找到 .gitmodules
文件。
According to my GitHub private repo, I still have submodules for my repository. Just that I cannot find the .gitmodules
file anywhere.
推荐答案
- 确保
.git / config
中没有子模块
部分。如果存在,请将其移除。 - 执行
git rm --cached< path_to_submodule>
。
- Ensure that there are no
submodule
sections in.git/config
. If there are, remove them. - Do
git rm --cached <path_to_submodule>
.
这篇关于.gitmodules中找不到用于路径和缺少.gitmodules文件的子模块映射的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!