赞
踩
&&
连接:控制台进入指定目录,输入如下命令,批量下载服务:
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的服务一个目录下面
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。