Failed to execute gitub repo using egit

When I try to execute ti github repo using egit, I get below error:

enter image description here

What does this error mean? This is my first fix.

Here is how I am trying to accomplish:

enter image description here

enter image description here

+4
source share
6 answers

The problem for me was the wrong version of egit. When using the eclipse update site, I used the recommended version instead of the Indigo version.

From Download Egit File :

enter image description here

+2
source

On March 4th, GitHub temporarily disabled all public keys until you approve them for security reasons. I had the same problem when I tried to commit. For those who met the same exceptions after March 4, 2012, go to https://github.com/settings/ssh/audit/ and approve your public keys so you can pull / push -to your repository again.

+2
source

Adding .git to the repository url worked for me.

+2
source

First I have to make sure your settings are correct using git bash to clone the repository. This will cause errors when an error occurs. This will confirm that the network settings and git settings are correct.

If you need a read-only URL, you can try using the github read-only URL, which looks like this: git://github.com/path/to/repo.git

However, github users read / write urls to push github code. These URLs use the following format: git@github.com :path/to/repo.git . You can find these URLs listed on the github refinancing page. Perhaps the problem you are facing is that you click on github but use the HTTP protocol and not the read / write protocol git@ .

+1
source

In my case, setting the ssh key on github was not done correctly. As soon as I deleted certain repository deployment keys and determined the global ssh key, everything began to work as expected for me.

+1
source

Going to the correct depth in the repository URL to match which .git directory is actually located (without specifying .git itself) worked for me. I tried to go one level too high.

-one
source

Source: https://habr.com/ru/post/1397911/


All Articles