Git: error: RPC failed; curl 55 SSL_write() returned SYSCALL,
Dec 17, 2016 - by kurinchilamp / / Post Comment
Git uses "Transfer-encoding" in POST requests and some proxy servers do not support this encoding by default. When large files are pushed, the git client requires higher http.postBuffer setting.
Increase the buffer size to see if the issue is related to it.
$ git config --global http.postBuffer 134217728
Continue Reading