I'm a first time git user trying to setup egit in Eclipse so I can continue to easily code through Eclipse. Problem is, every time I try to clone a repo through egit, it gives me the error "Cannot list available branches. Reason: ssh://git@github.com:22 Passphrase for /Users/elifinkelshteyn/.ssh/id_rsa." This is really strange as I can clone through terminal using that same id_rsa just fine, and I've verified in Eclipse ssh properties that it is trying to use the correct key. What gives?

link|improve this question

As VonC says below, this is a current bug, but only in the latest nightly builds. I was able to fix my problem by rolling back to the latest stable build, at which point I was correctly prompted for my password. If anyone else experiences this problem, just roll back to the latest stable. – Eli Aug 23 '11 at 16:50
feedback

4 Answers

up vote 4 down vote accepted

Just to confirm: this is a current bug (issue 353561).
And passphrase might still be a problem depending on the encryption you used when creating your key (bug 326526).

However, passphrase are supposed to be supported (as the Egit user guide mentions).

link|improve this answer
feedback

if you get a prompt for the passphrase but eclipse doesn't accept the passphrase, try the following:

set the GIT_SSH environment variable to your ssh client e.g. by adding

export GIT_SSH=/usr/bin/ssh

to your .bash_rc

on Mac OSX, open terminal and type:

cd
mkdir .MacOSX
cd .MacOSX
echo "" > environment.plist
open environment.plist

add a KEY=GIT_SSH with VALUE=/usr/bin/ssh and save the file.

After relogin to your account, it should work.

link|improve this answer
feedback

As VonC says, it's a bug that the SSH implementation that EGit uses can't handle anything but 3DES encrypted private keys. If you're like me, you have AES encrypted keys, so it just fails to decrypt them. There is a comment in that bug report, here's a link directly to the comment https://bugs.eclipse.org/bugs/show_bug.cgi?id=326526#c9

That comment provided a working workaround: recent versions of EGit honour the GIT_SSH environment variable, setting that to /usr/bin/ssh or even plink.exe if you're on windows should solve the issue.

link|improve this answer
feedback

It looks like your /Users/elifinkelshteyn/.ssh/id_rsa file requires a password, and I'm not sure that the ssh implementation in Eclipse knows how to prompt you for one. It's tickling the back of my brain that there's probably an ssh-auth package you need to install for the mac so that it can prompt, and if you can find out more about that, it's probably ideal. However, a workaround in the short term is to generate a new rsa key that doesn't use a password, upload that to github, and set eclipse to use it.

link|improve this answer
Protection of your private key has nothing to do with the public key from the keypair which you upload to GitHub. – Piotr Dobrogost Dec 8 '11 at 22:08
feedback

Your Answer

 
or
required, but never shown

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