I am trying to clone my repository using ssh
from bitbucket
but whenever i clone the repository i get:
Connection to bitbucket.org closed by remote host.00 KiB/s
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
During cloning repositories of small size
it gets cloned but when cloning bigger size
repositories gives the error.
I also have tried this method:
fatal: early EOF fatal: index-pack failed
but no luck. Could any one help with the issue?
Note:
Http
cloning works fine, but that doesn't work in my scenario. I need to clone using only ssh
.
Receiving objects
? What was the download speed before it stoped? To find out if it is a network issue: Does this work on another network? Does it work to download big files from Bitbucket, e.g. the zip file of the repo content? Does downloading big files from elsewhere work? – LandyGIT_TRACE_PACKET=1
to the front of your clone command:GIT_TRACE_PACKET=1 git clone ...
. This will print extra information about what is happening at the network level and may give some insight into what is actually failing. – Jackquelinejackrabbit