When I try to clone on git bash, I receive this error:
$git clone
Cloning into \'name_project\'...
Password for \'\':
remote: Counti
I faced with this problem using git in Kubuntu. I've also noticed overall instability in networking and found a solution.
in /etc/resolv.conf add the line to the end of the file
options single-request
This fixed delays before every domain name resolution and git started to work like a charm after this.
We need to adjust/override your client's settings.
git config --global http.postBuffer 524288000
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
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
Solution for failed with error: RPC failed; result=18, HTTP code = 200
Try running the command below in the remote repository if error is fatal: index-pack failed
git repack -a -f -d --window=250 --depth=250
Also try the below ones from the remote repository location if the above one didn't work:
git gc --aggressive
git repack -a -f -d --window=250 --depth=250
Try reducing the postBuffer size in the remote repository config. Follow the steps below
git config http.postBuffer 24288000
I try it and can't solve current solution. It solved when i just visit to my GitLab unicorn log that displays the problem:
I, [2014-02-10T17:46:29.953026 #5799] INFO -- : worker=0 ready
E, [2014-02-10T17:47:52.026874 #5719] ERROR -- : worker=1 PID:5728 timeout (181s > 180s), killing
E, [2014-02-10T17:47:52.039670 #5719] ERROR -- : reaped #<Process::Status: pid 5728 SIGKILL (signal 9)> worker=1
the worker timeout says about problems with long time running for git clone.
It fixed in GitLab Unicorn config.. just change 180 seconds to bigger in config/unicorn.rb
timeout 360
If you use other web server or use proxy Nginx, possible you need also:
server {
...
# if a file, which is not found in the root folder is requested,
# then the proxy pass the request to the upsteam (gitlab unicorn)
location @gitlab {
proxy_read_timeout 600; # https://github.com/gitlabhq/gitlabhq/issues/694
proxy_connect_timeout 600; # https://github.com/gitlabhq/gitlabhq/issues/694
proxy_redirect off;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://gitlab;
}
}
pay attention to part of proxy_read_timeout and proxy_connect_timeout.