OpenSSL ssL_read: Connection was aborted,errno 10053 报错

OpenSSL ssL_read: Connection was aborted,errno 10053 报错

原错误信息:
Git: fatal: unable to access 'https://github.com/overwhatx/gittest.git/ :
OpenSSL ssL_read: Connection was aborted,errno 10053

解决办法

原因:Git默认限制推送的大小,运行命令更改限制大小即可 增加缓冲

解决办法:
git config --global http.postBuffer 524288000

更改网络认证设置

解决办法:
git config http.sslVerify "false"

你可能感兴趣的:(Git,git,github,网络)