我想在我的子模块中包含子模块。添加子子模块会引发错误
(Parent)
|
--submodule--(Editor)
|
--submodule--(Editor)/(AndroidEditor)
我用命令添加它们:
git submodule add https://xx.git submodules/Editor/
git submodule add -f https://yy.git submodules/Editor/AndroidEditor
并在添加第二个子模块时出错:
致命的:Pathspec'submodules / Editor / AndroidEditor'在子模块中 '子模块/编辑器'无法添加子模块 'submodules / Editor / AndroidEditor'
添加子子模块是将子子模块添加到 Editor git repo而非添加到 Parent 的唯一方法吗?