LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to bitbucket.org:443

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/github_34402358/article/details/88708478

问题:

今天用Sourcetree拉取代码的时候,出现如下

SSL_ERROR_SYSCALL in connection to bitbucket.org:443

产生这个问题的原因就是你设置了http或者https代理,so 就取消http或者https代理就可以了!

解决方法:

git config --global --unset http.proxy
git config --global --unset https.proxy

再去拉代码就可以了,第一次拉可能会失败,多是两次就好了!!!

猜你喜欢

转载自blog.csdn.net/github_34402358/article/details/88708478