Git通过bash脚本克隆所有存储库

时间:2019-01-13 12:18:42

标签: git github git-clone

我已经加入一家公司,并且我的公司有GitHub帐户,并且它有50个存储库,我希望一次克隆所有存储库 有什么方法可以通过运行bash脚本克隆所有存储库

https://github.com/CompanyName

1 个答案:

答案 0 :(得分:-1)

使用存储库创建一个数组:

arr=("repoa" "repob" "repoc")

创建一个for循环以克隆所有存储库:

for i in ${0..49}; do git clone https://github.com/CompanyName/${arr[${i}]}; done

我建议您使用带有指定清单的回购工具。