下载 Git Clone 时出现错误?

发布于 2024-12-23 00:02:47 字数 476 浏览 3 评论 0原文

我正在打开终端,编写如下命令,

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沉溺在你眼里的海 2024-12-30 00:02:47

问题是您的系统上没有安装任何证书颁发机构证书。

忽略 ssl 证书验证并继续安装:

$ env GIT_SSL_NO_VERIFY=true git clone https://github...

或者您可以在 MAC 操作系统上尝试此操作:

git config --global --add http.sslVerify false

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:

$ env GIT_SSL_NO_VERIFY=true git clone https://github...

Or you can try this for MAC oS :

git config --global --add http.sslVerify false
白云不回头 2024-12-30 00:02:47

尝试删除 https 并仅在克隆 URL 中使用 http。

Try removing the https and just using http in the clone url.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文