I'm stuck behind a firewall so have to use https to access my github repository. It's a new one I'm creating & am using cygwin 1.7.7 on XP. I've tried setting the remote to https://oharab@github.com/oharab/ExcelANT.git, but pushing prompts for a password, but doesn't do anything once I've entered it. https://oharab:github.com/oharab/ExcelANT.git and cloning the empty repo from scratch but each time it gives me the same error error: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://github.com/oharab/ExcelANT.git/info/refs

Turning on GIT_CURL_VERBOSE=1 gives me

* About to connect() to github.com port 443 (#0)
*   Trying 207.97.227.239... * successfully set certificate verify locations:
*   CAfile: none
  CApath: /usr/ssl/certs
* SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
* Expire cleared
* Closing connection #0
* About to connect() to github.com port 443 (#0)
*   Trying 207.97.227.239... * successfully set certificate verify locations:
*   CAfile: none
  CApath: /usr/ssl/certs
* SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
* Expire cleared
* Closing connection #0
error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://github.com/oharab/ExcelANT.git/info/refs

fatal: HTTP request failed

Is this a problem with my firewall, cygwin or what?

Ben

Posted too soon!

I hadn't set the http proxy in the git config, however it's an ISA server that needs NTLM authentication, not basic, so unless anyone knows how to force git to use NTLM, I'm scuppered! B.

link|improve this question

feedback

11 Answers

up vote 17 down vote accepted

There is a better way than using http access and that is to use the ssh service offered by github on port 443 of the ssh.github.com server. It is a bit too much to explain it in an answer but you can read about it in this blog post

We've been using this for over year now on both Linux and Windows.

link|improve this answer
I gave up on getting this working, but had another look at it, and got it working. changing .ssh/config to >Host ssh.github.com >User oharab >Hostname ssh.github.com >Port 443 >PreferredAuthentications publickey >IdentityFile ~/.ssh/id_rsa and cloning using git clone git@ssh.github.com:oharab/log4vba.git got it up and running in no time. – oharab Jul 14 '11 at 13:39
Sorry for the formatting, I can't get it to work! – oharab Jul 14 '11 at 13:45
feedback

The problem is that you do not have any of Certification Authority certificates installed on your system. And these certs cannot be installed with cygwin's setup.exe.

There are two solutions: 1. Ignore ssl certificate verification:

$ env GIT_SSL_NO_VERIFY=true git clone https://github...

2. Actually install root certificates. Curl guys extracted for you certificates from mozilla:

http://curl.haxx.se/docs/caextract.html

cacert.pem file is what you are looking for. This file contains > 250 CA certs (don't know how to trust this number of ppl). You need to download this file, split it to individual certificates put them to /usr/ssl/certs (your CApath) and index them.

Here is how to do it: With cygwin setup.exe install curl and openssl packages Execute:

$ cd /usr/ssl/certs
$  curl http://curl.haxx.se/ca/cacert.pem | awk 'split_after==1{n++;split_after=0} /-----END CERTIFICATE-----/ {split_after=1} {print > "cert" n ".pem"}'
$ c_rehash
link|improve this answer
3  
You don't need to install curl, just use wget: wget -O - http://curl.haxx.se/ca/cacert.pem | awk 'split_after==1{n++;split_a fter=0} /-----END CERTIFICATE-----/ {split_after=1} {print > "cert" n ".pem"}' – Deebster Mar 8 '11 at 16:03
1  
@Deebster, that would work if wget was installed by default, which for me it wasn't. – Peter Wagenet May 4 '11 at 4:17
8  
I know this is cygwin, but in case anyone gets here using Centos, it's /etc/pki/tls/certs where the .pem's should go. – sequoia mcdowell Aug 21 '11 at 19:43
Alternatively you can extract all certificates from Firefox (using a plugin), then convert them from DER to PEM format like this: for i in *.der; do openssl.exe x509 -text -inform DER -fingerprint < "$i" > /usr/ssl/certs/"${i%.der}.pem"; done Finally run c_rehash and job done – MarcH Aug 29 '11 at 18:04
Didn't work for me--however, I don't have c_rehash in my path. I tried restarting my shell. I also had to mkdir -p /usr/ssl/certs. I'm wondering if my Cygwin install is different or missing something? Also, setting GIT_SSL_NO_VERIFY=true followed by running the clone operation resulted in this error: fatal: https://code.google.com/.../info/refs not found: did you run git update-server-info on the server? Maybe it will work after reboot? – Jeff Axelrod Sep 9 '11 at 17:32
show 3 more comments
feedback

The easiest way is to disable the SSL CERT verfiy:

git config --global http.sslVerify false

This will prevent CURL to verity the HTTPS certification.

link|improve this answer
feedback

Note that for me to get this working (RVM install on CentOS 5.6), I had to run the following:

export GIT_SSL_NO_VERIFY=true

and after that, the standard install procedure for curling the RVM installer into bash worked a treat :)

link|improve this answer
8  
same effect as git config --global http.sslverify false – Dyno Hongjun Fu Sep 7 '11 at 11:23
feedback

I wanted Git to use the updated certificate bundle without replacing the one my entire system uses. Here's how to have Git use a specific file in my home directory:

mkdir ~/certs
curl http://curl.haxx.se/ca/cacert.pem -o ~/certs/cacert.pem

Now update .gitconfig to use this for peer verification:

[http]
sslCAinfo = /home/radium/certs/cacert.pem

Note I'm using an absolute path. Git does no path expansion here, so you can't use ~ without an ugly kludge. Alternatively, you can skip the config file and set the path via the environment variable GIT_SSL_CAINFO instead.

To troubleshoot this, set GIT_CURL_VERBOSE=1. The path of the CA file Git is using will be shown on lines starting with "CAfile:" in the output.

link|improve this answer
For me, this is the best answer: it works on unix (NetBSD actually), it affects only git and not anything else on the system, and it doesn't require root/Administrator access. Thanks! – Eric Feb 9 at 4:32
feedback

If all you want to do is just to use the Cygwin git client with github.com, there is a much simpler way without having to go through the hassle of downloading, extracting, converting, splitting cert files. Proceed as follows (I'm assuming Windows XP with Cygwin and Firefox)

  1. In Firefox, go to the github page (any)
  2. click on the github icon on the address bar to display the certificate
  3. Click through "more information" -> "display certificate" --> "details" and select each node in the hierarchy beginning with the uppermost one; for each of them click on "Export" and select the PEM format:
    • GTECyberTrustGlobalRoot.pem
    • DigiCertHighAssuranceEVRootCA.pem
    • DigiCertHighAssuranceEVCA-1.pem
    • github.com.pem
  4. Save the above files somewhere in your local drive, change the extension to .pem and move them to /usr/ssl/certs in your Cygwin installation (Windows: c:\cygwin\ssl\certs )
  5. (optional) Run c_reshash from the bash.

That's it.

Of course this only installs one cert hierarchy, the one you need for github. You can of course use this method with any other site without the need to install 200 certs of sites you don't (necessarily) trust.

link|improve this answer
feedback

I know the original question lists Cygwin, but here is the solution for CentOS:

curl http://curl.haxx.se/ca/cacert.pem -o /etc/pki/tls/certs/ca-bundle.crt

Source: http://eric.lubow.org/2011/security/fixing-centos-root-certificate-authority-issues/

link|improve this answer
This worked great for me; you should probably make a backup of the original first, though, as the OP suggests. It seems like this happens when Github renews their cert, if you are on a system that has an older one. – Evan Donovan Mar 5 at 23:07
feedback

I've been having this same problem for Solaris Express 11. It took me a while but I managed to find where the certificates needed to be placed. According to /etc/openssl/openssl.cnf, the path for certificates is /etc/openssl/certs. I placed the certificates generated using the above advice from Alexy.

You can verify that things are working using openssl on the commandline:

openssl s_client -connect github.com:443
link|improve this answer
feedback

As pointed in /usr/ssl/certs/README.RootCerts, this is an FAQ:

http://www.openssl.org/support/faq.html#USER16

link|improve this answer
feedback

I needed the certificates just for Cygwin and git so I did what @esquifit posted. However, I had to run step 5 manually, c_rehash was not available on my system. I followed this guide: Installing CA Certificates into the OpenSSL framework instead.

link|improve this answer
feedback

Try using a .netrc file, it will authenticate over https. Create a file call .netrc in your home directory and put this in it:

machine github.com login myusername password mypass

See this post for more info:

https://plus.google.com/u/0/104462765626035447305/posts/WbwD4zcm2fj

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.