git bash: error: RPC failed; result = 18, HTP code = 200B | 1KiB/s

后端 未结 8 792
广开言路
广开言路 2020-12-09 04:15

When I try to clone on git bash, I receive this error:

$git clone 
Cloning into \'name_project\'...
Password for \'\':
remote: Counti         


        
相关标签:
8条回答
  • 2020-12-09 04:58

    On Linux

    Execute the following in the command line before executing the Git command:

    1. export GIT_CURL_VERBOSE=1
    2. export GIT_TRACE_PACKET=1
    3. export GIT_TRACE=1

    On Windows

    Execute the following in the command line before executing the Git command:

    1. set GIT_TRACE_PACKET=1
    2. set GIT_TRACE=1
    3. set GIT_CURL_VERBOSE=1

    More info ==> Atlassian Documentation

    0 讨论(0)
  • 2020-12-09 05:02

    If the following command not works:

    git config http.postBuffer 24288000
    

    Try this command:

    git config --add core.compression -1
    
    0 讨论(0)
提交回复
热议问题