1

I am trying to clone a git project known as Storm-Starter however I am getting the following error when running the git clone https://github.com/nathanmarz/storm-starter.git command:

Cloning into 'storm-starter'...
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/nat
hanmarz/storm-starter.git/info/refs?service=git-upload-pack
fatal: HTTP request failed

I have followed the tutorial on github (as somebody suggested to doing so when such an issue occurs) on how to generate and submit the SSH keys and everything went well,so I have no idea what is happening.

I am also running this on Windows 8 machine.

Tohmas
  • 547
  • 2
  • 7
  • 14
  • Are you behind a proxy ? –  Feb 14 '13 at 15:17
  • Oh,not really,could it be the issue that I am using my android phone usb internet tethering to gain access to the internet? – Tohmas Feb 14 '13 at 15:18
  • 1
    You may find more information here : http://stackoverflow.com/a/8755199/1706698 –  Feb 14 '13 at 15:35

1 Answers1

0

You can disable the SSL CERT verification by setting:

git config --global http.sslVerify false

See here.

emallove
  • 1,417
  • 1
  • 17
  • 22