Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What the heck does "obstructed" mean when you try to check into Subversion? I see two folders in red with text status of "obstructed." I don't see what this means anywhere in the docs.

When I try the cleanup command, I get "folder name is not a working directory." This is a folder I just created in VS, and when I try to add it to Subversion it gives me that error. All other folders are fine.

share|improve this question
You get 'Obstructed' on the add operation? – Sander Rijken May 20 '09 at 22:16

8 Answers

up vote 69 down vote accepted

it occurs when you have deleted or moved the .svn subdirectories (without going through SVN commands), so SVN has a corrupted view of the working copy.

Try a cleanup first, and if that doesn't solve it, revert (or update) the directory to restore the subdirectory .svn folders.

share|improve this answer
1  
weird. I ended up having to do a checkout of this folder. The folder existed before in the repository. I then deleted it without using the svn delete command. By checking it back out and committing, problem resolved. Then on another .css file that I did NOT rename, delete, and only have been editing it, it I had to do an svn update because I was getting some weird issue with that (different message). – CoffeeAddict May 20 '09 at 22:20
Good God, I was trying to commit based on a copy of this project that I had on my external drive, not the working copy from my local drive. Duh. – CoffeeAddict May 20 '09 at 22:23
2  
This often happens if you move a directory from one place to another and don't use the SVN move command. The hidden .svn file is moved along with it but is not updated. Deleting the .svn files fixes the problem. – user85259 Apr 10 '10 at 23:46
This happened to me when I moved an entire folder by copying the folder into another folder using Visual Studio 2008, rather than using Windows Explorer. – MacGyver Nov 3 '11 at 15:44
The way I resolved was to export off my files from the obstructed folder so I don't lose them, then I clicked on the folder above the obstructed folder, clicked revert, then un-selected everything but the obstructed folder, and reverted that obstructed folder, so it would rip that folder out of the contents of the .svn file. Then I re-added the previously obstructed folder back with the exported files, and re-added them. – MacGyver Nov 3 '11 at 15:51
show 1 more comment

Without knowing what causes this, the solution can be to export the working copy (the entire checkout you have locally) to somewhere else.

If you are using tortoisesvn, you get the option to "export un-versioned files", but I think if doing it from the command line it only exports versioned files so you might have a bit of a laborious task copying un-versioned files manually.

Once done, check out a clean working copy and then drop the exported backup you have over the top of it. It's very important that the backup has no .svn folders in it.

I've seen these errors before when people have checked out working copies inside other working copies or anything else that corrupts the .svn entries.

share|improve this answer
That fixed it for me. Thanks! – Patrick Sep 11 '10 at 19:15
3  
I think the solution is to stick SVN in the bin and switch to a version control system which isn't rubbish. Sorry...I'm just frustrated. – Phil Hale Oct 18 '11 at 15:12

If you're on a *nix system, ensure that you didn't create a file, add it to SVN, then delete it, replacing it with a folder of the same name. Doesn't help OP, but hopefully it'll save someone a bunch of stress.

share|improve this answer

This means that, for some reason, a conflict has occurred during the operation. Check to see if there is an existing unversioned file or folder with the same name as a versioned one.

(Paraphrased from the Tortoise SVN client help file)

share|improve this answer

Had the same issue and fixed it like this:

  • renamed the obstructed dir
  • created the dir with its original name in SVN (e.g. svn mkdir)
  • updated the parent folder, so the newly created dir appears in my working copy
  • copied the files from the obstructed to the newly created dir and commited them
share|improve this answer

I ran into this problem when pasting at folder with subdirectories into my working copy using my FTP client - I knew I screwed up as soon as I hit the transfer button... the perils of working way too late.

I tried all the suggestions above and other found online to no avail. Every option produced the error that my directory was locked and the operation could not be performed.

I went into my Time Machine copy, restored the directory and was good to go. I cleaned the working copy as a precaution, updated my files properly and was back in business.

share|improve this answer

Nothing worked for me so i've done the following:

  • exported with the unversioned files in a new location
  • renamed the existing folder
  • moved the folder from the export location in the project
  • renamed the new folder
  • add, commit
  • removed the old, renamed folder
  • renamed the new folder
  • commit
share|improve this answer

We often have multiple branches on the go at the same time, in order to save me switching or messing around with IIS configuration I check each branch out to a separate folder. I then use directory linking to connect those folders back to the main path configured in IIS.

So for me the linked directory always has a yellow exclamation and is marked as obstructed. I believe this is because it was technically created/moved outside of SVN.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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