1

我正在尝试克隆一个名为 Storm-Starter 的 git 项目,但是在运行git clone https://github.com/nathanmarz/storm-starter.git命令时出现以下错误:

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 上的教程(当出现此类问题时有人建议这样做)关于如何生成和提交 SSH 密钥并且一切顺利,所以我不知道发生了什么。

我也在 Windows 8 机器上运行它。

4

1 回答 1

0

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

git config --global http.sslVerify false

这里

于 2014-02-20T13:19:05.973 回答