在Mac上使用HTTPS的Git克隆不起作用

问题描述

| 我每天都在Windows和Linux中使用Git,但我只是想使其在Mac上运行,但在执行简单的“ 0”时遇到问题。我使用了Git网站上的安装程序以及bash脚本,该脚本在ѭ1中添加了环境变量 我说这是因为我不确定完全正确设置所有内容,所以我还将ssh密钥添加到了我的github帐户中。 所以这是终端的全部输出
myComp:Sites me$ git clone https://github.com/me/some_project.git
cloning into some_project...
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/me/some_project.git/info/refs

fatal: HTTP request Failed
myComp:Sites me$
这是environment.plist的样子:
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">
<plist version=\"1.0\">
<dict>
    <key>PATH</key>
    <string>/usr/local/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/X11/bin</string>
</dict>
</plist>
    

解决方法

        这是对我有用的方法,它可能是(也可能不是)最佳解决方案,但肯定是最简单的。
git config --global --add http.sslVerify false
    ,        我对您的问题进行了一些研究,发现存在类似问题的人。显然,对他们来说,问题在于他们的路径中有重复的环境变量。您确定以前尚未在此计算机上安装git吗?您能否看一下〜/ .MacOSX文件,看看其中是否有任何异常?