在使用git拉取github代码库的时候出现一下错误
LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
解决方法如下:
1.先取消全局代理:
git config --global --unset https.proxy
git config --global --unset http.proxy
2.配置全局代理:
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
git config --global https.https://github.com.proxy socks5://127.0.0.1:1080
注意1080改为自己代理服务的端口号