首页 > 技巧 > git浅克隆一个分支
作者:ghostry 发布时间:2019-01-25 浏览: 5651
转载注明出处: https://blog.ghostry.cn/technique/895.htmlgithub超级慢,克隆openwrt的话,12k的速度clone几百MB实在无法忍受。
发现这个,一句话就行了,不用下面老办法那么麻烦.
git clone -b openwrt-18.06 --depth 1 https://github.com/openwrt/openwrt
首先浅克隆master。
git clone --depth 1 https://github.com/openwrt/openwrt.git
然后修改为需要的分支,直接checkout是不行的,需要
git config remote.origin.fetch '+refs/heads/openwrt-18.06:refs/remotes/origin/openwrt-18.06'
git pull --depth 1
git checkout openwrt-18.06
首先修改了配置,再pull一下。然后checkout就可以了。
下一篇: 资料库搭建
简单明了 感谢分享