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

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

    Hey I had same issue but resolved from link i mentioned below

    https://confluence.atlassian.com/pages/viewpage.action?pageId=301663284

    EDIT:

    ** From Website: **

    Workaround:

    While we have server site settings set appropriately for this option, you may need to adjust/override your client's settings. To do this, execute the following command(s):

    From within a specific repository. Note the number at the end is the size, in bytes that you wish to allow in a single post. If you have much larger files, you may need to increase this number.

    git config http.postBuffer 524288000

    To set this gloablly for all remote Git repositories you ever connect to

    git config --global http.postBuffer 524288000

    I'm not quite sure that it'll work for everyone, but this solved my problem

提交回复
热议问题