git clone 远程仓库的某个文件夹

有些远程仓库特别大,直接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

你可能感兴趣的:(笔记)