早上再从Github上面clone代码的时候,提示 OpenSSL SSL_read: Connection was reset

karry_bai@XA-Karry_Bai MINGW64 /f/Git
$ git clone https://github.com/stayor/git-gui-zh.git
Cloning into 'git-gui-zh'...
fatal: unable to access 'https://github.com/stayor/git-gui-zh.git/': OpenSSL SSL_read: Connection was reset, errno 10054

经过一番资料查询,发现多数情况下国内访问 Github 会被和谐,有时候网络波动问题会导致推送失败。推荐使用 SSH 方式拉去代码或者参考 开源项目 修改本机 hosts 文件解决访问问题
发现是Git开启了SSL认证。关闭SSL认证即可解决这个问题。

解决办法:

1、解除SSL认证

git config --global http.sslVerify "false"

2、更新DNS缓存

ipconfig /flushdns

3、文件过大,超过上限

git config http.postBuffer 5242880003

4、用户名,邮箱问题

查看用户名,邮箱

git config user.name
git config user.email

修改,用户名,邮箱

git config --global user.name "xxx"
git config --global user.email "xxx"

移除仓库,重新添加

git remote rm origin
git remote add origin https://github.com/XXX

扩展资料:

HelloGitHub 镜像站:https://raw.hellogithub.com/
无需安装即可加快访问 GitHub 的方法,修改本地域名解析: https://raw.hellogithub.com/hosts

标签: Git, Git OpenSSL SSL_read, Git OpenSSL读取连接已重置, Git OpenSSL SSL_read 10054

添加新评论