为了节省磁盘空间,我通常使用浅克隆:
具有以下内容的默认分支:
git clone --depth 20 --shallow-submodules --recurse-submodules
如何增加浅克隆的深度?
注意:我不想increase to a full clone,我只想加深已有的东西。
答案 0 :(得分:1)
使用git fetch --deepen=<depth>
:
--deepen=<depth> Similar to --depth, except it specifies the number of commits from the current shallow boundary instead of from the tip of each remote branch history.