当前位置: 首页 > 工具软件 > LibreSSL > 使用案例 >

LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

谢哲瀚
2023-12-01

在使用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改为自己代理服务的端口号

 类似资料: