up vote 6 down vote favorite
1
share [g+] share [fb]

I have some projects in a workspace that were imported from SVN using Subclipse. Now I'm opening this workspace with a new version of Eclipse (with Subclipse) and the "Team" context menu only contains "Apply patch".

Is there a way of getting subclipse working with these projects without having remove them from the workspace, and do a new import from SVN?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Maybe you do not have disconnected your projects before uninstalling the previous SVN Team Provider.
So all projects are still connected to the removed older version of the plug-in.
In that case Team Services does not show "Share Project" menu item.

The only way to reconnect these projects would be to remove them from workspace (without content deletion) then re-import these projects into workspace: pure eclipse operation: no SVN re-import needed.

See also this thread.

link|improve this answer
This worked fine. Thanks a lot :) – l3dx Sep 18 '09 at 7:55
feedback

If you've forgotten to "Disconnect" a project before switching plugins or Eclipse versions, you can clean it up by deleting some index files from your workspace.

Assuming you're on a 'nix-based OS shutdown Eclipse then:

cd $WORKSPACE
find .metadata/.plugins/org.eclipse.core.resources/.projects -name 'properties.index' -delete

Re-launch Eclipse, and you should be able to do Share Project again. The same works if you try to switch from Subversive to Subclipse and find yourself with only an Apply Patch option and no Share Project under the Team menu.

Solution oringinally found here: http://mschrag.blogspot.com/2010/11/switching-from-subversive-back-to.html

link|improve this answer
feedback

I had the same problem, but when I update subclipse to last version the problem came out for me. http://subclipse.tigris.org/update%5F1.6.x

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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