user3771543
user3771543

Reputation: 13

git clone error. Read from socket failed: Connection reset by peer fatal: Could not read from remote repository

While try to clone project from Mooveb getting below error.


$ git clone [email protected]:skoteeswaran/ving-test.git

Cloning into 'ving-test'...

Read from socket failed: Connection reset by peer fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists.

Upvotes: 1

Views: 7813

Answers (1)

VonC
VonC

Reputation: 1325037

You at least need to check that ssh [email protected] (and if not, check the output of ssh -Tvvv [email protected])

The issue could be:

  • client-side (port 22 blocked) or
  • server-side
    • (name or repo name incorrectly written, or with wrong case)
    • error on the sshd (daemon) side

Upvotes: 3

Related Questions