I've got a git repository with two Maven projects "foo" and "bar". The structure of the cloned repo is as follows:

myrepo
  .git
  foo
    pom.xml
  bar
    pom.xml

What I want

Two projects "foo" and "bar" in my workspace with maven nature and working Team menu. I'm running Eclipse 3.7 with m2e 1.0.0.

I tried the following:

Import -> Check out maven projects from SCM

This clones the repo into a new folder in my workspace folder and imports the two projects, but without connection to git (Team menu is mostly empty).

Import -> Projects from Git

With this option I can only import the entire repo as a single general project (with working Team menu). If I then use "Import -> Existing maven projects", the projects foo and bar are imported but without working Team menu.

Is it possible at all to import multiple projects from a git repo with working Team menus?

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

As far as I know and are able to perform on my setup (Eclipse 3.7, Egit 1.0.0, m2e 1.0, m2e-egit 0.13), it is not possible in a single step. The cleanest procedure that I know of is the following:

  • Clone your Git repository (preferably from Eclipse, otherwise you also need to add the repository to the Git Repositories view);
  • Import -> Check out existing Maven projects from the root folder of your cloned repo;
  • Select all the resulting Eclipse projects, and choose Team -> Share project;
  • Now select Git and check Use or create Repository in parent folder of project.

Long-winded? Sure. But cloning beforehand gives you control over the folder name you check out to, in contrast to Check out Maven projects from SCM which on my machine produces a "maven_{unix_timestamp}" like folder name.

I agree wholeheartedly with you that a quicker procedure should be available.

link|improve this answer
I wasn't aware that I could use "Share project" to reconnect the project to its local git repo, thanks. I also found a bug report for this: bugs.eclipse.org/bugs/show_bug.cgi?id=346098 – Jens Theeß Sep 19 '11 at 10:28
Good to know. Let's hope for a quick fix then. – Luca Geretti Sep 19 '11 at 11:18
it works, thanks! – Piotrek De Sep 22 '11 at 14:37
According to Bug 346098, EGit 1.2 has the option to auto-share imported projects. To be found under Preferences -> Team -> Git -> Projects. – Jens Theeß Jan 25 at 16:01
I still have some issues making EGit > 1.0 integrate with both m2e and the mylyn GitHub connector, so I am stuck with the 1.0.0. – Luca Geretti Jan 25 at 16:34
feedback

Your Answer

 
or
required, but never shown

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