Hi Team,
While try to clone our private repository to local we are getting issue. after counting and compressing objects issue was coming
cloning was getting failed coming below issue.
fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed
Hi Vamsi! This error indicates that something has interrupted your traffic. It doesn't really say what caused the interruption - whether it was Bitbucket, or something on your local network, or something else. From experience, in many cases this has been caused by network bandwidth. You can try using a different network and if that still doesn't work, you could do
git config --global core.compression 1
where 1 means "fastest compression".
If the issue is still not solved after that, let us know if this also happens when you perform other operations (push, pull, etc.) and whether you're using SSH or HTTPS.
Kind regards,
Ana
Hi @Ana Retamal
Thanks for the quick solution, after applying provided command in git bash clone was performing successfully,
git config --global core.compression 1
Thanks,
Vamsi Mandadapu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it worked for me, thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, I am facing the same issue and the suggested solution does not work. I am using SSH. I could not verify push or pull since I couldn't clone the repository at all. Any other workaround?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My action is pull for cloning, I have tried the above command, but the error remains. I am using https.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Facing the same issue in Jenkins clone
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried
git config --global core.compression 1
and
`git config --global http.postBuffer 157286400` and neither fixed the problem
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.