OpenSSL err

近段时间使用git总是碰到类似于连接不上的问题。

1
fatal: unable to access 'https://github.com/Hc1023/Hc1023.github.io.git/': OpenSSL SSL_read: Connection was reset, errno 10054

生活不容易,我也不知道自己做错了什么。于是现在就通过代理

1
2
git config --global http.proxy http://userName:password@proxyaddress:port
git config --global https.proxy http://userName:password@proxyaddress:port

可以检查一下自己的设置

1
git config --list | grep proxy

也可以重新unset,等到又连接不上的时候,再如上设置代理呜呜

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