【debug】LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

问题描述

环境:MacOS 10.15.4
的情况下,能够git clone,但是在git push操作时出现以上问题,搜了搜确实是代理出现了问题,解决方法基本都是关掉代理,本人则重新设置了代理,原~/.gitconfig内容如下:

[https "https://github.com"]
	proxy = https://127.0.0.1:1086
[http "https://github.com"]
	proxy = socks5://127.0.0.1:1086
[user]
	name = JohnJim0816

按照解决git clone太慢的问题的方法更改后的~/.gitconfig内容如下:

[http]
	proxy = socks5://127.0.0.1:1086
[https]
	proxy = socks5://127.0.0.1:1086

至于网上之所以说关掉代理,估计是他们git clone的时候没有上网,而所以需要删掉~/.gitconfig中的内容

参考链接

git使用代理出现LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 错误
LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
macos LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
VS code提交失败,输出提示:OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443