> .git/info/sparse_gitclone部分文件">
赞
踩
有些远程仓库特别大,直接clone下来,一则耗时长,二则有可能因为网络问题中断,clone失败。所有clone远端仓库的某个文件夹是必要的,git1.7之后的版本都支持这个功能。
1.初始化:
git init
2.连接远端库:
git remote add origin url
3.启用"Sparse Checkout"功能:
git config core.sparsecheckout true
4.添加想要clone的目录:
echo “子目录路径” >> .git/info/sparse-checkout
注意:子目录路径不包含clone的一级文件夹名称:
例如库路径是:
https://A/B/C/example.git
我们想clone example下的D/E/F目录,则:
echo “D/E/F” >> .git/info/sparse-checkout
5.pull代码:
git pull origin master
或者不包含历史版本的clone:
git pull --depth 1 origin master
————————————————
请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/luo870604851/article/details/119748749
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。