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

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

    I faced this Problem while cloning the code from bitbuket.com

    Error

    D:\ABCProj>git clone xxxxxxx
    cloning into 'xxxxx'.....
    Password for 'https://ccccc':
    remote:Counting Objects : 14705,done.
    remote:Compressing Objects :100%(1234/1234),done.
    error:fatal:fatal:RPC failed ; result =18 ,HTTP code =200B/s early EOF
    The remote end hung up unexpectedly
    fatal:index-pack failed
    

    Solution , below things are fixed my Probs ! Simply I just excute the below any one of the command then could you plz again clone /check out like

    D:\ABCProj>git config http.postBuffer 524288000
    

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

    D:\ABCProj>git config --global http.postBuffer 524288000
    

    Then Once clone your Project

    D:\ABCProj>git clone xxxxxxxxxxxxx 
    

    Further more details or clarification about this Problem Please refer this site https://confluence.atlassian.com/pages/viewpage.action?pageId=301663284

提交回复
热议问题