From b20805af603380c3abfc1b2e7859d28185e397f1 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Mon, 7 Aug 2006 17:10:21 +0200 Subject: [PATCH] handle https:// protocol in git-clone Signed-off-by: Junio C Hamano --- git-clone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-clone.sh b/git-clone.sh index acc7a51b97..7060bdab01 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" -- 2.11.4.GIT