When I try to clone on git bash, I receive this error:
$git clone
Cloning into \'name_project\'...
Password for \'\':
remote: Counti
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