I am using Eclipse Indigo RC4 with EGit (bundled). I have a project which I have committed to my local repository, and now I want to push from that to a remote repository I have in GitHub.

Pushing / Pulling from the command line tools works fine (I have configured RSA key based SSH authentication).

But when I try to push from EGit (via SSH pointed to GitHub), I get a prompt to enter my pass phrase. But when I enter the correct pass phrase, it prompts again for the same (note: username appears as git because that's the default when using GitHub. I guess that wouldn't be a issue).

Under Eclipse preferences, I have double checked to ensure that it is configured to use the RSA tokens I have generated.

link|improve this question

57% accept rate
feedback

2 Answers

up vote 17 down vote accepted

Got it sorted out by following this link http://www.eclipse.org/forums/index.php/t/197428/.

I created an environment variable GIT_SSH which points to usr/bin/ssh (which was the SSH implementation I was using in command line) and started Eclipse. When this environment variable was present, Eclipse connected using my shell's SSH tool and there was no prompt for pass phrase and it worked fine.

link|improve this answer
I am having issues doing this, where do I place the environmental variable, the exact line I need please? – Seth Hikari Jun 14 '11 at 21:17
2  
@Seth That depends on your operating system Seth. In my case, I am using Ubuntu, so I modified the /etc/environment (you need super-user privileges for that) file and added the line GIT_SSH="/usr/bin/ssh" as the last line into it, and restart the machine. If you are using Windows, check out this link support.microsoft.com/kb/310519. In any case, a quick Google on "How to set environment variable in Your-OS-Name" will get you going. Hope this helps. Good Luck ! – Yohan Liyanage Jun 15 '11 at 8:58
same problem, same solution! Tks a lot! – Topera Jul 3 '11 at 1:20
2  
FYI but not to be a stickler, you generally shouldn't edit /etc/environment and should instead edit the .profile in your home directory. Adding the line export GIT_SSH=which ssh will typically work across most platforms. – Nick Campion Sep 8 '11 at 23:19
Thanks Nick. Yeah you are right. I am used to editing /etc/environment because changes I do there are available across all accounts. But then again I have only one account in my machine, and I could have just used the .profile instead :) – Yohan Liyanage Oct 10 '11 at 16:00
feedback

Even simpler is to update the JSch bundle to 0.1.44 from eclipse orbit repository (p2 software site): http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository/

The underlying problem is actually that JSch < 0.1.44 does not support the newer encryption scheme AES-128:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=326526

link|improve this answer
That fixed it for me (Ubuntu 11.04). Why wouldn't they backport that into the current stable release? Frustrating. – Stephen J. Fuhry Sep 26 '11 at 23:08
Thanks worked for me in current STS release – HaveAGuess Oct 8 '11 at 23:01
@adietisheim Many thanks! Updating the JSch package worked for me as well!! :) – rmbianchi Mar 22 at 18:46
feedback

Your Answer

 
or
required, but never shown

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