I've installed Egit plugin at Eclipse Helios and i'm trying to use it with my github account, but when i try to configure it i get an "Auth Failed" error.

I'd been googling it but no luck... it seems to be a problem with my passphrase but AFAIK Egit is looking at the right place (/home/user/.ssh/id_rsa) and i've no problem in connect by ssh or git console client.

Some blogs says that is a problem with the URI and the Egit's parser but i still haven't found a solution.

Thanks in advance for the help

link|improve this question
feedback

12 Answers

up vote 2 down vote accepted

After spending hours looking for the solution to this problem, I finally struck gold by making the changes mentioned on an Eclipse Forum.

Steps:

Prerequisites: mysysgit is installed with default configuration.

1.Create the file C:/Users/Username/.ssh/config (Replace "Username" with your Windows 7 user name. (e.g. C:/Users/John/.ssh/config)) and put this in it:

Host github.com
HostName github.com
User git
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa

2.Try setting up the remote repository now in Eclipse.

Cheers. It should work perfectly.

link|improve this answer
feedback

My answer may be outdated but hopefully it can be useful for someone.

  1. In your Eclipse go to Window > Preferences > Network Connections > SSH2 (or just type "SSH2" in preferences window filter box).
  2. In "Key Management" tab press "Generate RSA Key..." button. Optionally you can add comment (usually e-mail address) and passphrase to your key. Passphrase will be used during authentication on GitHub.
  3. Copy your generated public key (in a box just below "Generate RSA Key..." button) and add it to your GitHub account.
  4. Press "Save Private Key..." button to save your private RSA key into file. By default keys are stored in SSH2 home directory (see "General" tab).

That's it! Now you should be able to push your code to GitHub repo.

link|improve this answer
My private key didn't have the standard name (id_rsa), so it wasn't being recognized as such. I added it manually, in the preferences windows pointed by you, and it worked fine. – muriloq Jul 22 '11 at 23:21
I was having a similar issue, this solution worked like a charm – rjacks Oct 16 '11 at 1:22
I noticed that after setting up the SSH key as you describe I should not be changing the username/password in the authentication box (I was putting my GitHub credentials). The default in this box is username:git and password is blank. – harschware Feb 8 at 4:05
I upvote thee for the right answer. We are using both personal githubs and a local gitorious server I installed at my company. We had trouble with Eclipse even though the local git was working fine. – Gepsens Feb 29 at 15:17
feedback

tehsis, you need to install msysgit, after installing you need to open Git Bash and enter there these commands:

$ git config --global user.name "Gennadiy Zlobin" (your name)
$ git config --global user.email gennad.zlobin@gmail.com (your email)
$ ssh-keygen -C "gennad.zlobin@gmail.com" -t rsa (your email)

Now your generated keys are in C:\Users\username\.ssh (in Windows 7).
Next you load the content of your public key to your project on Github
In Eclipse open Window->Preferences->General->Network->SSH2 and set your ~/.ssh as SSH Home
After that go to Key Management tab and Load existing Key - set here your private key in ~/.ssh
After that you can push your project to Github (but I set ssh protocol, not git+ssh)

Good luck,
Gennadiy

link|improve this answer
Thanks a lot, but actually i'm running it under Arch Linux – tehsis Nov 26 '10 at 23:01
feedback

I had exactly same problem but I found the cure from a Eclipse bug report!

An environment variable named GIT_SSH must be set with a path to a ssh executable [1].

For example on Ubuntu Linux (10.10 64bit):

> export GIT_SSH=/usr/bin/ssh
> eclipse

After that pushes to GitHub repository work like they should. I tested this with Eclipse Galileo and Indigo.

The problem is really annoying and the solution is far from nice. For now, making the solution permanent for, at least Ubuntu users, one must make the env variable permanent. It can be done by adding the export command to ~/.profile or ~/.bashrc [2]. For example:

> cd ~
> echo "export GIT_SSH=/usr/bin/ssh" >> .profile

Sources:

link|improve this answer
I've been on this problem all week - Eclipse under osx connecting to GitHub or Asssembla. Your fix works for me. Thanks. – ianmayo Oct 7 '11 at 10:57
Thanks, I've been on this problem all day.It works for me. – YeJiabin Nov 25 '11 at 9:28
On Windows, openssh didn't work for me. I had to use plink. See my answer. – Piotr Dobrogost Jan 16 at 18:25
And it's getting closer to a released fix. At the end of the bug report someone showed how to manually download the latest jsch jar file and manually install it to make it work that way. I'm just going to go with this env var solution and wait for the that jsch jar file to get into the actually eclipse release. – Crow Magnumb Apr 24 at 16:30
feedback

I resolved it by selecting http as the protocol and giving my github username and password .. Works for me ..

link|improve this answer
feedback

I solved same problem with adding my key to ssh;

ssh-add ~/.ssh/id_rsa 

then entered the passphrase and need restart.

link|improve this answer
this solved my problem, thanks! – Shlomi Mar 4 at 22:41
feedback

Have you tried to use the ssh protocol instead on git+ssh ? I've got the same problem, and that solved it, even though official documentation tells to use git+ssh

link|improve this answer
feedback

I updated the plugin with the nightly builds: http://www.eclipse.org/egit/download/

With an update, it worked for me. (Eclipse Helios, Mac OS X)

link|improve this answer
I've been using the nigtly builds since i began but no luck... – tehsis Sep 26 '10 at 17:49
It's still not working for me :( it have been upgraded two times since i post this. May be is a bug under GNU/Linux – tehsis Nov 26 '10 at 23:02
feedback

I found a post on the Eclipse forums that solved this problem for me.

link|improve this answer
feedback

My fourpenneth: my SSH keys were set up in Cygwin, at C:\cygwin\home\<user>.ssh, so I pointed SSH to this folder instead of the default (Win7) C:\Users\<user>\ssh, as per these instructions: http://wiki.eclipse.org/EGit/User_Guide/Remote#Eclipse_SSH_Configuration

and used the ssh protocol, and it works fine. Trying to use the git protocol still gives "User not supported on the git protocol", though.

link|improve this answer
feedback

On Windows, setting GIT_SSH to openssh that comes with msys git didn't work (Eclipse hung during commit). Setting it to TortoisePlink solved the problem (I guess original plink would work as well). The added bonus is now Eclipse uses keys stored in pageant.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.