vote up 2 vote down star

I recently moved my Eclipse workspace directory and now Subclipse complains every time I open a file, dumping to the console something like:

Path is not a working copy directory

svn: '[original (pre-move) directory path]' is not a working copy

No such file or directory

This also happens when I explicitly try to view the history of a file. This persists across SVN cleanups, closing and re-opening Eclipse, etc.

Update, checkin, checkout and so on all seem to work fine, and Tortoise doesn't complain at all, so clearly it's not the SVN metadata that's screwed up, it's some Subclipse-specific metadata. Can anyone tell me how to blow this broken metadata away?


Edited to add: "Team > Disconnect" followed by "Team > Share" doesn't solve the problem.


Edited again to add: I've grepped through the whole .metadata directory and one of the project directories for a unique element of the old path and can't find it anywhere except in .metadata/.log (the error message itself) and some old Findbugs warnings. Very nice.

flag

71% accept rate
What version of eclipse/myeclipse are you using? – VonC Sep 15 at 10:17
Galileo (3.5). The stock "IDE for Java Developers." – David Moles Sep 17 at 10:25

4 Answers

vote up 0 vote down check

I was having the same error message using subclipse with javahl on a project that is out of the workspace directory. Changing to svnKit has resolved my problem.

link|flag
I'm not about to try it again to test it now, but that sounds very plausible. :) Thanks! – David Moles Oct 21 at 7:32
vote up 1 vote down

Edited to add: Nope, spoke too soon. This doesn't fix it. Some files just seem not to exhibit the problem.


The following seems to solve the problem:

  1. Team > Disconnect.
  2. Quit Eclipse.
  3. Blow away .metadata/.plugins/org.tigris.subversion.subclipse.*.
  4. Restart Eclipse.
  5. Team > Share.

Not sure how the old path was actually being stored in the plugin prefs, but it must have been in there somehwere. It's kind of pathetic of Subclipse to store absolute paths, but apparently it is.

There's a bug filed on this, or at least on the same error message. No context. Fifty cents says it gets rejected.

link|flag
vote up 0 vote down

Sometime ago I had a similar issue. Seems that Subclipse (or Eclipse) stores the absolute path of your working copies. The cleanest solution is to export again your repository to the new path.

If you have non-committed code, then you can copy it on top of the clean export (without the .svn folder)

link|flag
vote up 0 vote down

Hard to say without further information.

Did you move the whole workspace or just the content?

Also, you can try creating new workspace from scratch and check out the whole project again.

Alternatively, you may try deleting the .metadata directory and relink the project again using File -> import -> existing project into workspace and then relink the SVN data through Team -> Share projects (with an 's'), or maybe just do this last bit after first disconnecting the project from SVN.

link|flag
I moved the whole workspace directory. I'm sure recreating everything from scratch would work, but that seems stupid. I just tried disconnect/share and that didn't fix it -- I'll update the question to note that. – David Moles Sep 15 at 8:50
Sorry about that. And it looks like the disconnect - reconnect thing failed, too. I gave up.... – RichN Sep 15 at 15:01

Your Answer

Get an OpenID
or

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