2013-02-14 208 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