Radhika Shukla
Radhika Shukla

Reputation: 115

git repository clone failed. Connection Reset

I am using Bit bucket as my hosting site for the distributed version control systems (DVCS) Git.

While Cloning the project and bringing into my eclipse it is giving me the error:

Git repository clone failed.
Connection reset

While in wizard it does import till 50% Of my project and as soon as it reach 50 it gives me error.

I am doing it directly from Eclipse[import->Projects from Git-> entering my URL] without "git command line".

I even did window-->Preferences->Team->Git->Configurations->User Settings.
When I entered my name & ID but this also isn't helping.

I am unable to Clone in my project please help me with this issue.

Upvotes: 4

Views: 9150

Answers (1)

VonC
VonC

Reputation: 1328072

The name and ID would work only if you are using an https url:

 https://[email protected]/username/yourrepo.git

If that fails, you can try and set up ssh keys in Egit config, in order to use an ssh url for your repo:

[email protected]:vonc/test.git

Upvotes: 0

Related Questions