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 | |
parent | Fix "grep -w" (diff) | |
download | tgif-b20805af603380c3abfc1b2e7859d28185e397f1.tar.xz |
handle https:// protocol in git-clone
Signed-off-by: Junio C Hamano <junkio@cox.net>
-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 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" |