I have join a company and my company has GitHub account and It has 50 repositories I want to clone all the repositories in one go Is there any way to clone all repositories by run bash script
https://github.com/CompanyName
I have join a company and my company has GitHub account and It has 50 repositories I want to clone all the repositories in one go Is there any way to clone all repositories by run bash script
https://github.com/CompanyName
arr=("repoa" "repob" "repoc")
for i in ${0..49}; do git clone https://github.com/CompanyName/${arr[${i}]}; done
I would recommend using the repo tool with a designated manifest for your purpose.