标签: git git-submodules
我有一个带有几个子模块的仓库。我想对其中一个进行浅层更新。这是用
git submodule update --remote --depth 1 my_submodule
但是,然后,我将所有分支更新到最后一次提交。我知道当你克隆一个repo时,你可以用
git clone --depth 1 --branch <branch> url
问题是分支选项似乎不适用于git子模块更新。有什么工作吗?