Last active
April 21, 2020 05:34
-
-
Save jeremyje/656b3d58f303594601723de7a0542509 to your computer and use it in GitHub Desktop.
Checkout Codecahedron Repositories
This file contains hidden or 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
| #!/bin/bash | |
| # curl -L https://gist.githubusercontent.com/jeremyje/656b3d58f303594601723de7a0542509/raw/codecahedron.sh | bash | |
| set -e | |
| function Checkout { | |
| REPO=$1 | |
| git clone [email protected]:jeremyje/${REPO}.git | |
| cd ${REPO} | |
| git remote add upstream [email protected]:codecahedron/${REPO}.git | |
| git fetch origin | |
| git fetch upstream | |
| cd .. | |
| } | |
| Checkout infrastructure | |
| Checkout docker-images | |
| Checkout website | |
| Checkout apiserver | |
| Checkout codecahedron |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment