Skip to content

Instantly share code, notes, and snippets.

@jeremyje
Last active April 21, 2020 05:34
Show Gist options
  • Select an option

  • Save jeremyje/656b3d58f303594601723de7a0542509 to your computer and use it in GitHub Desktop.

Select an option

Save jeremyje/656b3d58f303594601723de7a0542509 to your computer and use it in GitHub Desktop.
Checkout Codecahedron Repositories
#!/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