2021-06-18 15:51:57 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Clones from resolving the arguments and switches into the new directory
|
2021-07-09 07:08:11 +00:00
|
|
|
set -e
|
2021-06-19 19:24:14 +00:00
|
|
|
remote=$(git-repo "$@")
|
|
|
|
echo "Cloning $remote"
|
2021-07-09 07:08:11 +00:00
|
|
|
git clone $remote ${@:4} --recurse-submodules
|
2021-10-11 08:02:14 +00:00
|
|
|
cd "$(expr "$1" || basename ${remote%.git})"
|
|
|
|
exec "$SHELL"
|