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?
feedback
|
|
Just to confirm: this is a current bug (issue 353561). However, passphrase are supposed to be supported (as the Egit user guide mentions). | |||
|
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
to your .bash_rc on Mac OSX, open terminal and type:
add a KEY=GIT_SSH with VALUE=/usr/bin/ssh and save the file. After relogin to your account, it should work. | |||
|
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. | |||
|
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. | |||
feedback
|