shallow clone
浅克隆经常在一些大型仓库中很有用——不用花费大量时间去clone一个完整的仓库,仅仅checkout出来某个分支(如master)的最新N次递交:
git clone --depth 1 https://github.com/openwrt/openwrt.git
由于clone的内容非常少,因此速度就大大提升了。查看git log
也只有最后一次递交记录而已。
2024-02-09 15:28:28
浅克隆经常在一些大型仓库中很有用——不用花费大量时间去clone一个完整的仓库,仅仅checkout出来某个分支(如master)的最新N次递交:
git clone --depth 1 https://github.com/openwrt/openwrt.git
由于clone的内容非常少,因此速度就大大提升了。查看git log
也只有最后一次递交记录而已。