jlb
jlb

Reputation: 20010

Why are there different types of "Team" menus with EGit?

What dictates which type of team menu shows up for my project? Is there a way to switch between the two?

  1. very traditional git-ish (ie. without "Synchorize Workspace" option) no synchronize

  2. eclipse team-ish (eg. with "Synchroize Workspace" option) with synchroize

Update

My git repositories view shows the following: git repositories

Upvotes: 3

Views: 221

Answers (2)

jlb
jlb

Reputation: 20010

Using the following steps I have enabled the "Team" features for my project:

  • delete project in Eclipse
  • delete project on filesystem (including .git/ repository data)
  • clone project into filesystem
  • add local repo to "Git Repositories" Eclipse view
  • in Eclipse, invoke an "Import Projects..." on the newly added repository, and "Import as general project"

Upvotes: 2

VonC
VonC

Reputation: 1330102

The second menu should be in effect when you have:

That is when your local repo knows what to fetch from or push to your remote repo.

Upvotes: 0

Related Questions