Git推送错误:RPC失败;curl 55 SSL_write() 返回 SYSCALL,errno = 10053。互联网连接正常,尝试增加缓冲区大小

Zee*_*wan 4 git github git-push github-pages

Enumerating objects: 282, done.
Counting objects: 100% (282/282), done.
Delta compression using up to 4 threads
Compressing objects: 100% (231/231), done.
Writing objects: 100% (282/282), 33.54 MiB | 126.73 MiB/s, done.
Total 282 (delta 52), reused 263 (delta 44)
error: RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 10053
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
Everything up-to-date
Run Code Online (Sandbox Code Playgroud)

我已经尝试过 git config buffer increment 命令和 lfs。此外,我的互联网连接良好 git 在其他长项目中运行良好。问题仅在这个项目中,我尝试删除旧的 repo 并创建一个新的 repo 但失败了。项目大小是 85MB,它是一个小的前端页面,我正在使用 githubpages 为这个项目提供实时服务,但现在这个错误.. 请给我解决方案。

Nis*_*ave 8

我遇到了同样的问题,我尝试增加 http 和 https 的缓冲区大小,但它不起作用我最终做的是

git push --force
Run Code Online (Sandbox Code Playgroud)

这有效。