tags:

views:

2913

answers:

6

I've somehow managed to get an SVN repository into a bad state. I've moved a directory and now I can't commit it in its new location.

As far as svn status is concerned, the directory is unknown (the name of the directory is type).

$ svn status
?      type

When I try to add the directory, the server says it already exists.

$ svn add type
svn: warning: 'type' is already under version control

If I try to update the directory, it's gone again.

$ svn update type
svn: '.' is not under version control

If I try to commit it, the server complains that it's old parent directory no longer exists.

$ svn commit type -m "Moving type"
svn: Commit failed (details follow):
svn: '/prior/trunk/src/nyu/prior/cvc3/theorem_prover/expression' path not found

To add to the mystery, the contents of the directory are marked as modified.

$ svn status type
A  +   type
M  +   type/IntegerType.java
M  +   type/BooleanType.java
M  +   type/Type.java
M  +   type/RationalRangeType.java
M  +   type/RationalType.java
M  +   type/IntegerRangeType.java

If I try to update from within the directory, I get this.

$ cd type
$ svn update
svn: Two top-level reports with no target

Committing from within the directory gives the same path not found error as above.

What's going on and how do I fix it?

EDIT: @Rob Oxspring caught me out: I got too aggressive moving things around in Eclipse.

UPDATE: I'm accepting @Rob Oxspring's answer of "don't do that/just start over" and taking his advice. I'd still be interested if anybody could tell me: (a) what the above error messages mean precisely and (b) how to actually fix the problem.

+1  A: 

Did you start by just copying/moving the directory with OS commands, or did you start with SVN stuff? If you just copied the files via the OS, you would still have hidden folders containing SVN information pointing to the old location.

crashmstr
+6  A: 

The easy way to fix many SVN errors is to move the whole directory away via the OS, update to get another clean copy of it and then merge in anything you changed with some other tool, WinMerge or the like.

After that, you can do whatever you were trying to do, but do it correctly :).

BCS
A: 

My experience is that sometimes the local copy gets out of sync with the repository. I usually solve this by going up the local directory tree, starting from the directory with the problem and try to do do cleanup and update with each step.

akr
+7  A: 

It looks to me like "type" has been created by some subversion aware copy command, then has been moved into the current directory using a subversion unaware copy. In my experience this sort of thing typically occurs when package refactoring operations have been chained together in eclipse without committing inbetween. Typically Subversion doesn't handle it well when you copy/move a locally copied/moved file or folder, although I think version 1.5 may handle it better.

To avoid this in future then commit between such steps. If you'd like to hide the intervening commits then I'd recommend doing the multi-step refactoring on a branch and then merging the changes back into the mainline in that single commit you were after.

If it's not too much work then I'd recommend getting back to a clean working copy and remake your changes committing after each step. If you're happy to lose the history, i.e. the new IntegerType.java won't be be linked at all to the old location of IntegerType.java, then you could take the approach suggested by BCS.

  • Move you're changed files into some temporary location, stripping out any .svn directories
  • Update your working copy into a clean working state.
  • Copy your changes back to where you want them to be.
  • Commit the resulting working copy
Rob Oxspring
+1  A: 

I'd suggest, to delete (outside subversionso with rm or similar), the directory above test, and then running svn update there.

That is, if you don't want to get a whole new working copy as others have suggested, which might be the safest approach.

Matt Sheppard
A: 

What happened is that you made a checkout of a folder, then locally 'svn add'ed and/or modified something to/in this folder, but before you have committed your changes, the original folder was moved (or deleted) from the SVN repository.

All you need to do is to switch your current checkout to the new location in the SVN repository. So, supposing you have a checkout of the foo folder from path/to/folder1/foo, and that foo was moved to path/to/foo, you just need to run:

$ svn switch path/to/foo

That's it... ;-)

déo
This sounds reasonable. Unfortunately, I don't have a bunged up working copy to test it on right now... ;-)
Chris Conway