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
脚本文件 checkout.sh
要与git clone的服务一个目录下面