Since git moved my project to be under its own /git/ directory, I have lost the ease of use of things like right clicking in the project and choosing things like 'New' -> 'Java Class'. The source folder, Package and Superclass fields are blank by default when I try this from the Git Repositories View, whereas in Package Explorer View I would still be able to this, except git moves your project out from there. (Now that I write it out, could this be a path issue?)

Adding pictures to help explain :

This is what I get when I right click in an attempt to add a class in the git version of my project:

enter image description here

This is what I get when I attempt to add a class in the project explorer version of my project:

enter image description here

link|improve this question
What perspective are you in? Did you try switching to the Java perspective? – James Kingsbery Feb 1 at 21:16
Did you follow the recommendation about where to create your Git repo? (wiki.eclipse.org/EGit/…) Ie not in the Eclipse workspace? – VonC Feb 1 at 21:22
I am in the Java perspective. I did not create the repo in the Eclipse workspace (its in /git/). I did find a 'workaround' of sorts. Instead of importing a project from the workspace, create the repo in /git/ first, then create a new project in there. This made it so Package Explorer was able to do its thing, and Git Repo View was able to do its thing too. – jason Feb 1 at 23:02
@jason: Ok I have added your workaround to my answer based on my original comment. – VonC Feb 2 at 9:00
feedback

migrated from superuser.com Feb 1 at 21:13

This question came from our site for computer enthusiasts and power users.

1 Answer

The EGit User guide mentions:

When setting up Git Repositories with EGit, there are two recommendations for the creation of "productive" (as opposed for "playground") Repositories:

  • Don't create the Repository within the Eclipse workspace:
    • Be careful when cloning or creating a Repository
    • Make sure to use the Git Sharing Wizard correctly
  • Don't create a Repository with an Eclipse project as root
    • Make sure to use the Git Sharing Wizard correctly

The first one happens when you specify a workspace folder during cloning or creation of a Repository.

Both of the above will happen when you use the Git Sharing Wizard from an Eclipse project that you have created manually in your workspace without taking precautions (the wizard has been fixed in the latest version).

This is compliant with the workaround found by the OP jason:

I did not create the repo in the Eclipse workspace (its in /git/).
I did find a 'workaround' of sorts.

Instead of importing a project from the workspace:

  • create the repo in /git/ first,
  • then create a new project in there.

This made it so Package Explorer was able to do its thing, and Git Repo View was able to do its thing to

link|improve this answer
feedback

Your Answer

 
or
required, but never shown