dotfiles/.local/bin/scripts/git-get

8 lines
261 B
Plaintext
Raw Normal View History

2022-05-03 16:26:15 +00:00
#!/bin/sh -e
# Clones from resolving the arguments and switches into the new directory
2022-01-12 11:44:28 +00:00
# ARGS see git-repo
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
cd "$(test -n "$2" && echo "$2" || basename ${remote%.git})"