14 lines
564 B
Bash
Executable File
14 lines
564 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Assuming that you're executing this script from the devtools directory, it
|
|
# will clone all other repositories in the organization.
|
|
|
|
cd ../
|
|
git clone git@git.andrewlalis.com:Handy-Http/transport.git
|
|
git clone git@git.andrewlalis.com:Handy-Http/primitives.git
|
|
git clone git@git.andrewlalis.com:Handy-Http/websockets.git
|
|
git clone git@git.andrewlalis.com:Handy-Http/data.git
|
|
git clone git@git.andrewlalis.com:Handy-Http/starter.git
|
|
git clone git@git.andrewlalis.com:Handy-Http/media.git
|
|
git clone git@git.andrewlalis.com:Handy-Http/client.git
|