I tried git submodule update --init --recursive
and got following error
error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
My OS is window 10 and I'm using docker for windows. Docker
images is ubuntu:16.04
Looks like you are missing openssl package, as another option could be network issue.
It's not exactly the same error code, but one response to this similar issue recommends setting large buffer sizes in the git global config settings;
git config --global http.postBuffer 524288000
git config --global https.postBuffer 524288000
This worked for me to overcome a similar error as yours, trying to clone the cppcheck repo off GitHub;
enter code here`remote: Counting objects: 100% (325/325), done.
remote: Compressing objects: 100% (159/159), done.
error: RPC failed; curl 56 GnuTLS recv error (-9): A TLS packet with unexpected length was received.
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With