git下载第三方SDK时报错:
LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
经分析,可能是代理设置有问题。
解决方案:
在终端分别输入如下命令
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
重新下载,问题解决。