Reputation: 553
I am trying to clone the repositorium in git from gitlab. The command, which I am using is:
git clone https://[email protected]...
Unfortunately I have got something like this:
Cloning into 'testDemo'...
remote: Counting objects: 15529, done.
error: RPC failed; curl 56 SSL read: error:00000000:lib(0):func(0):reason(0), errno 10054
fatal: The remote end hung up unexpectedly
fatal: protocol error: bad pack header
I am using Windows 10 and git bash. Thank you for the answer. Git version:
git version 2.10.1.windows.1
Upvotes: 1
Views: 2356
Reputation: 1324347
Make sure to:
force the ssl version (in case gitlab.com requires a recent tls protocol)
git config --global http.sslVersion tlsv1.2
You have other causes (firewall..) liste here for error 10054 .
And I propose some diagnostic helpers in "Unknown SSL protocol error in connection"
Upvotes: 1