2013-02-14 180 views
1

我试图克隆称为风暴启动运行git clone https://github.com/nathanmarz/storm-starter.git命令时,但是我收到以下错误Git项目:Github上克隆问题

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 

我按照GitHub上的教程(如某人建议当发生这样的问题时这样做)如何generate and submit the SSH keys和一切顺利,所以我不知道发生了什么。

我也在Windows 8上运行这个机器。

+0

你是否支持代理? – 2013-02-14 15:17:05

+0

哦,不是真的,这可能是我使用我的Android手机USB互联网共享访问互联网的问题吗? – Tohmas 2013-02-14 15:18:30

+1

您可能会在这里找到更多信息:http://stackoverflow.com/a/8755199/1706698 – 2013-02-14 15:35:58

回答

0

您可以通过设置禁用SSL证书验证:

git config --global http.sslVerify false 

here