LibreSSL SSL_connect: Operation timed out in connection to github.com:443已解决

22579192-5a0bd158bf50232b.png

1、首先看自己的VPN代理socks端口,自己用的ClashX

image

2、根据socks端口配置git代理

git config --global http.proxy socks5://127.0.0.1:端口

git config --global http.https://github.com.proxy socks5://127.0.0.1:端口

3、建议再配置以下两个,不然后续安装会报错

git config --global http.version HTTP/1.1

git config --global http.postBuffer 524288000

image

4、可查看配置是否成功

git config --global --list

5、安装好了之后可以重置回去

git config --global --unset http.proxy

git config --global --unset http.https://github.com.proxy

你可能感兴趣的:(LibreSSL SSL_connect: Operation timed out in connection to github.com:443已解决)