diff options
author | Michael Krelin <hacker@klever.net> | 2006-08-07 17:10:21 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-07 11:35:16 -0700 |
commit | b20805af603380c3abfc1b2e7859d28185e397f1 (patch) | |
tree | 18d0ae6e2413de9e851e136bd1dd9a9491368745 /git-clone.sh | |
parent | f25b79397c9775df9eeef3d59d0cc3b1f913bc60 (diff) | |
download | git-b20805af603380c3abfc1b2e7859d28185e397f1.tar.gz git-b20805af603380c3abfc1b2e7859d28185e397f1.tar.xz |
handle https:// protocol in git-clone
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-clone.sh')
-rwxr-xr-x | git-clone.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-clone.sh b/git-clone.sh index acc7a51b9..7060bdab0 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -298,7 +298,7 @@ yes,yes) fi git-ls-remote "$repo" >"$GIT_DIR/CLONE_HEAD" || exit 1 ;; - http://*) + https://*|http://*) if test -z "@@NO_CURL@@" then clone_dumb_http "$repo" "$D" |