[git]fatal: unable to access ‘https://github.com/***’: OpenSSL SSL_read: Connection was reset, errno 10054-QUI-Notes

原因:

OpenSSL读取:连接已重置,错误号10054,被代理替换了

方案1

将命令行里的http改为git重新执行

方案2

取消代理命令

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

取消代理之后,访问git就慢了,这时候就需要重新启用代理

git config --global http.proxy http://127.0.0.1:8080
git config --global https.proxy https://127.0.0.1:8080