在 .gitmodules 中找不到子模块映射
我正在尝试将子模块添加到 git 存储库,如下所示:
git submodule add git://repo my/dir/here
git submodule init
我收到此错误:在 .gitmodules 中找不到路径 'C:\Program Files (x86)\Git/libexec/git-core;C:\.....;c:\Program Files (x86)\QuickTime\ 的子模块映射QTSystem\'
C:\Program Files
部分列出了更多路径,为简洁起见,此处对其进行了缩短。
这是怎么回事?我该如何解决这个问题?
I'm trying to add a submodule to a git repo like this:
git submodule add git://repo my/dir/here
git submodule init
And I get this error:No submodule mapping found in .gitmodules for path 'C:\Program Files (x86)\Git/libexec/git-core;C:\.....;c:\Program Files (x86)\QuickTime\QTSystem\'
The C:\Program Files
part has a lot more paths listed, it is shortened here for brevity.
Whats going on and how can I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您位于存储库的根目录。 Git 子模块命令只能从那里起作用。
Make sure you are at the root of the repository. Git submodule commands only work from there.