Git error: RPC error; result = 52, HTTP code = 0

I have the following log when I click on github:

Counting objects: 70, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (69/69), done.
Writing objects: 100% (70/70), 16.72 KiB | 0 bytes/s, done.
Total 70 (delta 37), reused 1 (delta 0)
error: RPC failed; result=52, HTTP code = 0
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

I tried:

  • git config --global http.postBuffer 2M
  • git config --global http.postBuffer 524288000
  • My connection is complete ethernet.
  • I have a problem from 3 days ago.
  • My git --version "git version 2.4.0"
  • I do not have a firewall
  • Also, I can’t use SSH
+3
source share
2 answers

You must increase the size of the Git buffer to the maximum size of a single file in your repository.

0
source

This is probably a problem with HTTPS. Using SSH should solve your problem.

0
source

All Articles