#!/bin/sh # Clones from resolving the arguments and switches into the new directory set -e remote=$(git-repo "$@") echo "Cloning $remote" git clone $remote ${@:4} --recurse-submodules cd "$(test -n "$2" && echo "$2" || basename ${remote%.git})" exec "$SHELL"