git clone浅子模块

时间:2017-12-13 17:20:52

标签: git git-submodules

我添加了几个git子模块,它们是在.gitmodules中配置的。我对子模块的特定提交感兴趣。因此我提交这些提交,可以在git子模块状态中看到。 说

[submodule "pcl"]
        path = libs/pcl
        url = https://github.com/PointCloudLibrary/pcl.git

子模块状态显示757e28a75a0c6c0413085a2af070670828a48527 libs / pcl。 这意味着在运行git submodule update --init

后将检出上述SHA1

然而,我的问题是我不想完全克隆子模块pcl,因为我只对757e28a75a0c6c0413085a2af070670828a48527的提交感兴趣。有没有办法通过在.gitmodules文件中编写深度参数等来实现这一目的?

我看过几个帖子,但大多数都建议做一个git add子模块。既然我已经这样做了,有没有办法用每个子模块的深度参数编辑.gitmodule文件。

git clone --depth 10 --shallow-submodules <repo>
在我看来,

将拉出主分支的10个提交,然后是所有子模块的主分支的提示。我的理解是否正确?

1 个答案:

答案 0 :(得分:0)

找到解决问题的方法,这可能有助于其他人。

目标是浅层克隆子模块。按照以下步骤,项目(包括子模块)的大小从30 GB减少到2 GB。该项目由许多不断开发的子模块组成,如opencv,ffmpeg,pcl,mrpt等。

.gitmodule只包含子模块名称,路径和url(因此没有花哨的配置选项),就像这样

[submodule "pcl"]
        path = libs/pcl
        url = https://github.com/PointCloudLibrary/pcl.git

因此,首先是克隆,然后是init子模块,最后更新子模块。

git clone --depth 10 <repo>
git submodule init
git submodule update --depth 10

如果出现错误 - 错误:服务器不允许请求未公开的对象SHA,请增加此特定模块的深度,例如100.

git submodule update --depth 100 <submodule> # for those modules, whose depth doesnt match. try with different depths.

成功后,继续使用默认

git submodule update --depth 10

希望它对某些人有帮助,并且非常欢迎进一步的解决方案。