Git clone repository error: RPC failed; result=56, HTTP code = 200

后端 未结 7 1291
渐次进展
渐次进展 2020-12-03 13:59

I have been using a Git repository for a couple years and still feel like a newb.. help is most welcome!

It starts cloning for a while:

remote:          


        
7条回答
  •  再見小時候
    2020-12-03 14:09

    This error occurs due to Git's HTTPS protocol. To view the error in detail, you can set the GIT_CURL_VERBOSE environment variable. For example:

    $ GIT_CURL_VERBOSE=1 git pull
    

    Your Antivirus or Firewall could be modifying the HTTP packets in transit. See git clone failed due to antivirus for example.

    Finally, it could be an unreliable network connection. I am using an OSX machine connected to Wifi, and the problem disappeared when I switch to a LAN connection.

提交回复
热议问题