-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout_repos.sh
More file actions
executable file
·15 lines (13 loc) · 1.01 KB
/
checkout_repos.sh
File metadata and controls
executable file
·15 lines (13 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# A script to prep the repos as the CI/CD pipeline does, e.g. when you're developing on your local machine
#
# Run as ./checkout-repos.sh <tag name> e.g. ./checkout-repos.sh dev
#
git clone --depth 1 --branch $1 https://github.com/TaskarCenterAtUW/workspaces-backend.git api
git clone --depth 1 --branch $1 https://github.com/TaskarCenterAtUW/workspaces-frontend.git frontend
git clone --depth 1 --branch $1 https://github.com/TaskarCenterAtUW/workspaces-cgimap.git osm-cgimap
git clone --depth 1 --branch $1 https://github.com/TaskarCenterAtUW/workspaces-openstreetmap-website.git osm-rails
git clone --depth 1 --branch $1 https://github.com/TaskarCenterAtUW/workspaces-pathways-editor.git pathways-editor
git clone --depth 1 --branch $1 https://github.com/TaskarCenterAtUW/workspaces-rapid.git rapid
git clone --depth 1 --branch $1 https://github.com/TaskarCenterAtUW/workspaces-tasking-manager.git tasking-manager
git clone --depth 1 --branch $1 https://github.com/TaskarCenterAtUW/workspaces-leaderboard.git leaderboard