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
重新下載,問題解決。