❌ git 报错信息 :

1
OpenSSL SSL_read: Connection was reset, errno 10054 ...

❗ 异常信息

Git Bash 中,push 或者hexo deploy时,出现错误

1
2
3
git push

hexo d

⭕ 解决方案

1.邮箱问题

查看用户名,邮箱

1
2
git config user.name
git config user.email

修改,用户名,邮箱

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

移除仓库,重新添加

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

2.解除SSL认证

在 Git Bash 中输入以下命令:

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

3.更新 DNS 缓存

cmd 窗口输入

1
ipconfig /flushdns

4.文件过大,超过上限

修改为 500MB,在 Git Bash 中输入以下命令:

1
git config http.postBuffer 5242880003