Said Eclipse: "Some projects cannot be imported because they already exist in the workspace".
Which means: "Some projects cannot be imported because project/s of the SAME NAME already exist/s in the workspace."
Which implies that you also can't import two checkouts of the same project. Which would be useful if you want to run, say, a trunk and a branch version of the same project at the same time. Without using two Eclipse instances.
A solution, sort of: rename the existing project; if project's name is ProjectName, rename it ProjectNameTrunk. The .project file will look like this:
<projectDescription>
After this, you can import your branch (or other project of same name).
-- edit --
Hm: SVN checkout dialog has a 'project name' box to fill in. Wish it could
fill in the name of the folder checked out.
You saved my day !
ReplyDeleteMillion thanks ;) thanks for info..