2024-12-24 13:52:15 -05:00
|
|
|
# This script clones all relevant repositories into respective folders in the current working directory.
|
|
|
|
|
|
|
|
git_url="https://git.trinkey.com/t"
|
2024-12-31 20:07:58 -05:00
|
|
|
declare -a repositories=("common" "auth" "message", "blog")
|
2024-12-24 13:52:15 -05:00
|
|
|
|
|
|
|
for service in "${repositories[@]}"
|
|
|
|
do
|
|
|
|
git clone "$git_url/$service.git" $service
|
|
|
|
done
|