当前位置:   article > 正文

git 指定下载文件,目录_git 下载指定文件

git 下载指定文件
1、创建路径
mkdir gitfile
cd <路径> 
eg:cd /home/gitfile/
2、创建一个空的本地仓库
git init
3、连接远程仓库GitHub
git remote add -f origin <url>
eg:git remote add -f origin http://kf-gitlab-166/workspace/demo.git
4、开启sparse checkout 模式
git config core.sparsecheckout true
5、告诉Git哪些文件或者文件夹是需要下载的(作为列表保存在 .git/info/sparse-checkout 文件中)
指定demo目录如下:
echo demo >> .git/info/sparse-checkout
6、拉取想要的分支
#git pull origin master
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

参考
https://blog.csdn.net/heguangsui123/article/details/102959346

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/739825
推荐阅读
相关标签
  

闽ICP备14008679号