下载 Git Clone 时出现错误?
我正在打开终端,编写如下命令,
git clone url
它说
Cloning into code.xyz.com...
,我收到错误,
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://code.xyz.com/info/refs
fatal: HTTP request failed
我使用的是 Mac OS X 10.7,任何人都可以指导我应该做什么,我有正确的用户名和密码以及正确的网址吗?
I am opening the terminal, writting the command as follows
git clone url
It says as
Cloning into code.xyz.com...
and I am getting error
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://code.xyz.com/info/refs
fatal: HTTP request failed
I am using Mac OS X 10.7, can anyone guide me what should I do, I have proper username and password, and correct url?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题是您的系统上没有安装任何证书颁发机构证书。
忽略 ssl 证书验证并继续安装:
或者您可以在 MAC 操作系统上尝试此操作:
The problem is that you do not have any of Certification Authority certificates installed on your system.
Ignore ssl certificate verification and proceed with the installation:
Or you can try this for MAC oS :
尝试删除 https 并仅在克隆 URL 中使用 http。
Try removing the https and just using http in the clone url.