git下载单个文件或文件夹

2023-05-16

下载README.md文件

git init test && cd test
git config core.sparsecheckout true
echo 'README.md' >> .git/info/sparse-checkout 
git remote add origin http://ip:port/user_name/project_name.git
git pull origin master
git config core.sparsecheckout false

下载abc文件夹

git init test && cd test
git config core.sparsecheckout true
echo 'abc/*' >> .git/info/sparse-checkout 
git remote add origin http://ip:port/user_name/project_name.git
git pull origin master
git config core.sparsecheckout false
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

git下载单个文件或文件夹 的相关文章

随机推荐