git push时报错OpenSSL SSL_read: Connection was reset, errno 10054

首先,查阅网上教程,尝试了

$ git config --global http.sslVerify "false"

这个命令的作用是:修改解除ssl认证。
但是对我没有什么用。后边继续报错

remote: Repository not found.
fatal: repository 'https://github.com/Alice-Mased/Face-Recognition.git/' not found

检查后发现,,,我把自己用户的名字给拼写错了,尴尬尴尬,然后移除仓库,重新添加

$ git remote rm origin        
$ git remote add origin https://github.com/Alice-Marsd/Face-Recognition

再次进行操作

git  add .
git commit -m 'Face-Recognization'
git push -u origin master

但是!!!又双报错了


fatal: unable to access 'https://github.com/Alice-Marsd/Face-Recognition/': Operation timed out after 300035 milliseconds with 0 out of 0 bytes received

好的,是超时了,可能是网络的问题,那么就再次执行一次

fatal: unable to access 'https://github.com/Alice-Marsd/Face-Recognition/': OpenSSL SSL_read: Connection was reset, errno 10054

大无语。。。世界是个圆,再次又回到起点
继续查资料
查到结果为
如果是上传push提示的话。可能是文件过大
7be

修改为500M46ff24

git config http.postBuffer 5242880003

在修改之后重新push
我成功啦!!!

原文章在这里:http://www.9lyp.com/article/info/details/id/76
十分感谢!!

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