Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just installed the EGit plugin for Eclipse, restarted Eclipse and it shows well in the Installed Software list but... I can't find any added menus or access to its features?

What am I missing?

To prove that I am not hallucinating here is a screenshot of the list:

EGit is there!

But there is no hint or clue in any of the menus, menu items, perspectives or views that it's there...

No sign in menus: enter image description here

No sign in projects:

enter image description here

No sign in perspectives:

enter image description here

Do I need to do some additional configuration somewhere to enable it?

share|improve this question

4 Answers

up vote 2 down vote accepted

Mystery solved.

It turns out that I mistakenly installed Eclipse JGit instead of Eclipse EGit. Once I selected the EGit package instead:

enter image description here

Things went fine:

enter image description here

One letter difference... (E instead of J)

share|improve this answer

You just installed JGit, and forgot EGit. JGit is just the Git implementation, but doesn't contain any UI contributions. These are all in the EGit plugin (which should also be available in the Update Site).

share|improve this answer
Hindsight is 20/20 :) (see my earlier answer). Are both JGit and EGit needed? There are 3 sub-packages in that EGit package (plus 3 more source packages). Which ones do I really need? +1. – Android Eve Jul 8 '11 at 16:35
2  
You need both. JGit contains the Java Git implementation with all commands to work on Git repositories, and EGit provides the whole UI, that you see (you could JGit alone in your own code to work with Git repositories). The EGit Mylyn plugin contains the integration of EGit and Mylyn (such as automatic commit messages, if a Mylyn task is active, or the relation between commits and Mylyn tasks). – dunni Jul 8 '11 at 16:46
2  
But I already have command-line Git installed working. Why have two? Isn't there a danger that the bugs in the Java version will not be compatible with the bugs in the command-line version? Please clarify and +1 again. – Android Eve Jul 8 '11 at 16:51
1  
Because EGit doesn't use the command line Git (licensing is one reason). Maybe there are different bugs in command line Git and in JGit. But i haven't seen so far an incompatibility between command line and J/EGit, even if you use both on the same repository. – dunni Jul 8 '11 at 17:59

is there no new perspective available? Is there no "new -> project from git repository" available? Usually eclipse plugins work if they're listed.

Cheers

edit:

I just installed jGit as well. Here's what I found:

some image

To see it go to: Window -> open Perspective -> other

Also on a rightclick on my projects (as in cvs & svn plugins) -> team I find Git support as well.

Cheers again

edit 2: No "new project from git" here as well.

share|improve this answer
Nope. See update of screenshots in my original post. I am stumped and thanks +1 for being the 1st one to answer. – Android Eve Jul 8 '11 at 15:19
Interestingly, CVS is listed... but I don't want CVS, I want Git. :) – Android Eve Jul 8 '11 at 15:21
1  
cvs is default in most eclipse bundles... Sorry, can't help you then, never used that plugin before, only wanted to make sure you didn't overlook something. – rob Jul 8 '11 at 15:37
Thanks so much and +1 again. Unfortunately, I wasn't lucky as you were (see screenshot update in my original post). Why the inconsistent results? Did I hit a but in Eclipse? This is so weird (and frustrating). – Android Eve Jul 8 '11 at 15:52

Note that the Eclipse Classic package in Kepler (4.3 M6, March 2013) now includes Egit directly (see all the packages here).

See the announcement from Martin Oberhuber

With Kepler M6, we've added egit and Marketplace Client to the Eclipse Classic package, which is still the most popular of all Eclipse packages. The request adding git to all packages has been open for long, and after driving it with the Eclipse PMC Markus Knauer has helped me make it happen.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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