0%

关于 Git 提交错误10053

Git提交推送时报错

1
2
3
4
5
Push failed
Failed with error: The remote end hung up unexpectedly
The remote end hung up unexpectedly
unable to rewind rpc post data - try increasing http.postBuffer
RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10053

原因是Git默认限制推送的大小,运行命令更改限制大小即可

1
git config --global http.postBuffer 524288000