Last active
March 7, 2018 04:12
-
-
Save Zodiase/bcce9330831547e6a0005950014d7b34 to your computer and use it in GitHub Desktop.
Download Git repo (clone without .git)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git-download() { | |
set -e | |
url="$1" | |
git_filename=$(basename "$url") | |
default_target=${git_filename%.git} | |
target=${2:-"$default_target"} | |
git clone --depth=1 "$url" "$target" | |
rm -rf "$target/.git" | |
set +e | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment