curl:(35)服务器在Mac OS X El Capitan中中止了SSL握手(10.11.4)

时间:2016-08-27 09:30:11

标签: git macos ssl bitbucket

当我运行此命令时:

git clone <bitbucket repo>.git

我收到错误:

  

致命:无法访问   '.git /':服务器   中止了SSL握手

当我运行命令时:

git --version

输出:

  

git version 2.9.2

我无法理解我的Mac或Mac上安装 git 是否存在问题。

1 个答案:

答案 0 :(得分:4)

知道了。 这是因为我在代理后面并没有在命令行中设置为环境变量(认为它是在系统偏好设置 - &gt;网络 - &gt;局域网中设置的)

如果您在代理后面,请在〜/ .bashrc 文件中添加以下两行:

export http_proxy=http://<proxy_url>:<proxy_port>/
export https_proxy=https://<proxy_url>:<proxy_port>/