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

后端 未结 8 795
广开言路
广开言路 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

提交回复
热议问题