让我说我在一个带有两个子模块A和B的git存储库中有一个项目。我克隆了我的项目,然后加载我必须做的模块
git submodule init
git submodule update
这将下载所有我的模块。有一种方法可以只选择模块A或仅选择模块B,没有必须更改主项目的子模块设置?
答案 0 :(得分:1)
两个git submodule
命令(init
和update
)都可以将<path>...
作为参数。
所以你可以尝试:
git submodule init -- A
git submodule update -- A
git submodule init -- B
git submodule update -- B