Skip to content

Instantly share code, notes, and snippets.

@Gioyik
Created April 19, 2015 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gioyik/57f1f0490f8b29e60140 to your computer and use it in GitHub Desktop.
Save Gioyik/57f1f0490f8b29e60140 to your computer and use it in GitHub Desktop.
Clone varios repos with one script
#!/bin/bash
repos=(
myrepo1
myrepo2
myrepo3
myrepo4
myrepo5
myrepo6
myrepo7
myrepo8
)
for repo in "${repos[@]}"
do
git clone https://github.com/Gioyik/$repo.git;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment