我打开终端,按如下方式编写命令
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,任何人都可以指导我应该怎么做,我有正确的用户名和密码,以及正确的网址?
答案 0 :(得分:6)
问题是您的系统上没有安装任何证书颁发机构证书。
忽略ssl证书验证并继续安装:
$ env GIT_SSL_NO_VERIFY=true git clone https://github...
或者您可以尝试使用MAC oS:
git config --global --add http.sslVerify false
答案 1 :(得分:0)
尝试删除https,只使用克隆网址中的http。