Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git push error: RPC failed; result=56, HTTP code = 0 [closed]

Tags:

git

Detailed info:

Username for 'https://xiangwan.visualstudio.com': xiangwan
Password for 'https://[email protected]':
Counting objects: 85, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (58/58), done.
Writing objects: 100% (63/63), 20.67 KiB | 0 bytes/s, done.
Total 63 (delta 26), reused 1 (delta 0)
error: RPC failed; result=56, HTTP code = 0
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date
  1. has set git config http.postBuffer 524288000, still the error;
  2. Only HTTPS authenticate, no SSH
like image 304
xiangwan Avatar asked Feb 25 '14 05:02

xiangwan


1 Answers

The problem is most likely because your git buffer is too low.

You will need to increase Git’s HTTP buffer by setting.

git config --global http.postBuffer 2M
like image 156
Roshan Avatar answered Nov 18 '22 03:11

Roshan