From 9f9be005bed1940b4dae977db346b9b94ef970b6 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Sun, 26 Jul 2009 03:43:53 +0200 Subject: [PATCH] Default to /mingw/bin/curl-ca-bundle.crt for https certificates The curl executable uses that file as a source for root certificates, but running curl as a library does not do that automatically. So we have to tell Git about that file. Suggested by Bosko Ivanisevic. Signed-off-by: Johannes Schindelin --- etc/gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/gitconfig b/etc/gitconfig index b0e85d08..546d0593 100644 --- a/etc/gitconfig +++ b/etc/gitconfig @@ -7,3 +7,5 @@ packSizeLimit = 2g [help] format = html +[http] + sslCAinfo = /mingw/bin/curl-ca-bundle.crt -- 2.11.4.GIT