美文网首页
git只clone仓库中指定的目录

git只clone仓库中指定的目录

作者: writeSpace | 来源:发表于2021-07-24 10:23 被阅读0次
    git init 
    

    要拉去的分支

    git remote add -f origin http://xxxxx.git   
    
    git config core.sparsecheckout true   #开启sparse clone
    

    设置pull的目录 dir 是远端的目录

    echo "dir" >> .git/info/sparse-checkout   
    
    more .git/info/sparse-checkout
    

    pull 到本地

     git pull origin master  
    

    相关文章

      网友评论

          本文标题:git只clone仓库中指定的目录

          本文链接:https://www.haomeiwen.com/subject/yjimmltx.html