2

I'm getting this really weird error when trying to push changes to a repo hosted on Github. I thought it was a Github issue so I moved the repo to Bitbucket but am still getting the same error. Some guidance would be appreciated on how to fix this.

NOTE: clone and pull work just fine. push however causes issues.

> git push
Counting objects: 3, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 352 bytes | 352.00 KiB/s, done.
Total 3 (delta 2), reused 0 (delta 0)
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date
Bazinga
  • 469
  • 4
  • 16

1 Answers1

0

For my case errno 54, I remove my git proxy with

git config --global --unset https.proxy

It works.

David Guo
  • 1,589
  • 3
  • 19
  • 30