git报错:fatal: OpenSSL SSL_read: Connection was aborted, errno 10053

git push origin时提示报错 原因:无法与GitHub服务器简历OpenSSL连接 解决方案: step1:开启代理 step2:记录下ip地

git push origin时提示报错

原因:无法与GitHub服务器简历OpenSSL连接

解决方案:

step1:开启代理

step2:记录下ip地址和端口

step3:终端下输入命令行

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

问题解决