1.新建workspace,初始化
git init
複製程式碼
2.遠端載入庫(已經存在跳過)
git remote add -f origin http://XXXX.XXXXXX.XXX/XXXX
複製程式碼
3.允許使用sparse checkout
git config core.sparsecheckout true
複製程式碼
4.將需要下載的檔案路徑加入到配置檔案
echo 'subfolderName/subfolderName2' >> .git/info/sparse-checkout
複製程式碼
5.獲取程式碼,之後就可以正常操作其他命令了
git pull origin master
複製程式碼
6.push
git push --set-upstream origin master
複製程式碼
目前只實踐出master,分支還沒有成功