On Tue, Jan 04, 2022 at 07:59:50AM -0800, Nischay Kumar wrote: > When trying to clone a repository from github , below error is causing > clone failure(unable to clone a particular repository from github) : > *error: RPC Failed; curl 56 Failure when receiving data from the peer*
Git indeed uses libCURL to access repositories over HTTP and HTTPS protocols (but not SSH). Error 56 from cURL is detailed, for instance, in [1]. Does this help? If not, I'd recommend to try cloning using the SSH protocol. The alternative URL to do that can be obtained from the UI on the main project's page. > *git did not exit cleanly(exit code 128)* This should be harmless - it merely indicates Git exited with an error. Still, it's interesting: which piece of software are you using? It appears you do not run `git clone` by hand, don't you? 1. https://stackoverflow.com/a/28088940 -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/git-users/20220104163818.dtbkddzwm2stxyy7%40carbon.
