Git push error: RPC failed; result=56, HTTP code = 200 fatal: The remote end hung up unexpectedly fatal

前端 未结 10 1689
执念已碎
执念已碎 2020-12-07 16:24

While doing git push, I receive this error:

Username for \'https://github.com\': Newbie
Password for \'https://Newbie@github.com\':
Counting objects: 11507,          


        
相关标签:
10条回答
  • 2020-12-07 17:22

    It will work after increasing Git’s HTTP buffer by setting the git config var http.postBuffer to 524288000.

    git config http.postBuffer 524288000
    
    0 讨论(0)
  • 2020-12-07 17:24

    Try building git using openssl libraries. Refer to this post. You may have to compile git in Windows. I hope that helps.

    0 讨论(0)
  • 2020-12-07 17:29

    Poor network connection was the issue for me. Check your internet strength.

    0 讨论(0)
  • 2020-12-07 17:30

    I was running into a very similar issue, though I was deploying to an Azure Web App via a git push. I received this error:

    RPC failed; curl 56 SSL read: error:00000000:lib(0):func(0):reason(0), errno 10054
    The remote end hung up unexpectedly
    

    The solution for me was to change my deployment environment from a Macbook to a Windows desktop. See this answer for full details.

    0 讨论(0)
提交回复
热议问题