* [PATCH 8/9] Support more http features: https no cert, .netrc -> auth
@ 2005-07-23 0:30 Junio C Hamano
0 siblings, 0 replies; only message in thread
From: Junio C Hamano @ 2005-07-23 0:30 UTC (permalink / raw)
To: Linus Torvalds; +Cc: git
From: Darrin Thompson <darrint@progeny.com>
Date: 1121220760 -0500
Cause setting environment variable GIT_SSL_NO_VERIFY to turn off
curl's ssl peer verification.
Only use curl for http transfers, instead of curl and wget.
Make curl check ~/.netrc for credentials.
Signed-off-by: Junio C Hamano <junkio@cox.net>
---
git-fetch-script | 7 +++++--
http-pull.c | 6 ++++++
2 files changed, 11 insertions(+), 2 deletions(-)
1041908edea29758af81ac9452484cfc652f455c
diff --git a/git-fetch-script b/git-fetch-script
--- a/git-fetch-script
+++ b/git-fetch-script
@@ -9,8 +9,11 @@ merge_store="$_remote_store"
TMP_HEAD="$GIT_DIR/TMP_HEAD"
case "$merge_repo" in
-http://*)
- head=$(wget -q -O - "$merge_repo/$merge_head") || exit 1
+http://* | https://*)
+ if [ -n "$GIT_SSL_NO_VERIFY" ]; then
+ curl_extra_args="-k"
+ fi
+ head=$(curl -ns $curl_extra_args "$merge_repo/$merge_head") || exit 1
echo Fetching "$merge_head" using http
git-http-pull -v -a "$head" "$merge_repo/"
;;
diff --git a/http-pull.c b/http-pull.c
--- a/http-pull.c
+++ b/http-pull.c
@@ -16,6 +16,8 @@ static z_stream stream;
static int local;
static int zret;
+static int curl_ssl_verify;
+
struct buffer
{
size_t posn;
@@ -173,6 +175,10 @@ int main(int argc, char **argv)
curl = curl_easy_init();
+ curl_ssl_verify = gitenv("GIT_SSL_NO_VERIFY") ? 0 : 1;
+ curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, curl_ssl_verify);
+ curl_easy_setopt(curl, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
+
base = url;
if (pull(commit_id))
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-07-23 0:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-23 0:30 [PATCH 8/9] Support more http features: https no cert, .netrc -> auth Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox