Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>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.</p> <p>Update: <a href="https://stackoverflow.com/a/12107408/788374">Install Net/ca-certificates package in cygwin</a> (thanks dirkjot) </p> <p>There are two solutions:</p> <ol> <li><p>Actually install root certificates. <a href="http://curl.haxx.se/docs/caextract.html" rel="nofollow noreferrer">Curl guys extracted for you certificates from Mozilla</a>. </p> <p><code>cacert.pem</code> 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. </p> <p>Here is how to do it. With cygwin setup.exe install curl and openssl packages execute:</p> <pre class="lang-bash prettyprint-override"><code>$ cd /usr/ssl/certs $ curl http://curl.haxx.se/ca/cacert.pem | awk '{print &gt; "cert" (1+n) ".pem"} /-----END CERTIFICATE-----/ {n++}' $ c_rehash </code></pre> <p><strong>Important</strong>: In order to use <code>c_rehash</code> you have to install <code>openssl-perl</code> too.</p></li> <li><p>Ignore SSL certificate verification.</p> <p><strong><em>WARNING: Disabling SSL certificate verification has security implications.</em></strong> Without verification of the authenticity of SSL/HTTPS connections, a malicious attacker can impersonate a trusted endpoint (such as GitHub or some other remote Git host), and you'll be vulnerable to a <a href="http://en.wikipedia.org/wiki/Man-in-the-middle_attack" rel="nofollow noreferrer">Man-in-the-Middle Attack</a>. <strong>Be sure you fully understand the security issues <em>and</em> your threat model before using this as a solution.</strong></p> <pre><code>$ env GIT_SSL_NO_VERIFY=true git clone https://github... </code></pre></li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload