其他分享
首页 > 其他分享> > shallow clone

shallow clone

作者:互联网

shallow clone

浅克隆经常在一些大型仓库中很有用——不用花费大量时间去clone一个完整的仓库,仅仅checkout出来某个分支(如master)的最新N次递交:

git clone --depth 1 https://github.com/openwrt/openwrt.git

由于clone的内容非常少,因此速度就大大提升了。查看git log也只有最后一次递交记录而已。

 

标签:git,仓库,clone,shallow,递交,master,openwrt
来源: https://www.cnblogs.com/clemente/p/10598664.html