Created
December 29, 2018 01:38
-
-
Save robinbowes/3335a2d464d553c77b58d960d930a12c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for repo in ${list_of_repos[*]} ; do | |
if [[ -d $repo ]]; then | |
( | |
cd "$repo" | |
git checkout master | |
git pull | |
) | |
else | |
git clone "[email protected]:org/$repo.git" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment