当前位置:   article > 正文

mac 批 量下载git 仓库项目_git批量下载多个工程

git批量下载多个工程

git clone 服务放一行 用 &&连接:

控制台进入指定目录,输入如下命令,批量下载服务:
git clone http://gitlab/test/demo1.git && git clone http://gitlab/test/demo2.git && git clone http://gitlab/test/demo3.git

批量切分支脚本 checkout.sh:

批量切test分支

for file in ./*
do
    if test -f $file
    then
        echo '$file is file'
    else
        echo '$file is folder'
        cd $file
        git checkout -b test origin/test
        cd ..
    fi
done
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

脚本文件 checkout.sh要与git clone的服务一个目录下面

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

闽ICP备14008679号