vote up 9 vote down star
9

I get this error when I do a svn update:

Working copy xxxxxxxx locked Please execute "Cleanup" command

When I run cleanup, i get

Cleanup failed to process the following paths: xxxxxx

How do i get out of this loop?

flag

51% accept rate

12 Answers

vote up 7 vote down check

One approach would be to:

  1. Copy edited items to another location.
  2. Delete the folder containing the problem path.
  3. Update the containing folder through Subversion.
  4. Copy your files back.
  5. Commit

Another option would be to delete the top level folder and check out again. Hopefully it doesn't come to that though.

link|flag
vote up 1 vote down

A lot of times this is because of one corrupt file. This happened to me when I accidentally checked in resharper files. Do you have anything funky in there?

link|flag
vote up 1 vote down

Are you using TortoiseSVN and just upgraded? I've had that problem before when moving from 1.4 to 1.5 and not rebooting. (Try a reboot).

The reason you need to reboot is because the cache file gets all funky.

Otherwise, to just move on, export that working copy into a new folder (don't copy the .svn hidden folders), re-checkout the project, and move all your code back, then proceed with your commit.

link|flag
vote up 17 vote down

A colleague at work constantly sees this message, and for him it's because he deleted a directory under SVN version control without deleting it from SVN, and then created a new directory in it's place not under version control, with the same name.

IF this is your problem...

There are different ways to fix it, depending on how/why the directory was replaced.

Either way, you will likely need to:

A) Rename the existing directory to a temporary name

B) Do an SVN revert to recover the directory deleted from the file system, but not from SVN

From there, you would either

A) Copy the relevant files into the directory that was deleted

B) If you had a significant change of contents in the directory, do an SVN delete on the original, commit, and rename your new directory back to the desired name, followed by an SVN add to get that one under version control.

link|flag
vote up -1 vote down

Just delete the whole thing and checkout. The equivalent of reboot in svn...

link|flag
and lose all your changes? – Omar Kooheji Dec 5 '08 at 14:19
vote up 0 vote down

I have the same problem, and issueing the delete command won't work either because it says a file is locked. Though when I try to unlock, it says no files are locked... Luckily for me, the most recent version of all files is on a single computer, so how can I delete the entire folder including subfolders and re-commit them without errors please?

link|flag
vote up 0 vote down

SVN normally updates its internal structure (.svn/prop-base) of the files in a folder before the actual files is fetched from repository. Once the files are fetched this will be cleared up. Frequently the error is thrown because the "update" failed or prematurely cancelled during the update progress.

  1. Check any files are listed under .svn/prop-base directory
  2. Remove any files which are not under the folder
  3. Cleanup
  4. Update

Now the update should work.

link|flag
vote up 1 vote down

Had the same problem because I exported a folder under a version-controlled folder. Had to delete the folder from TortoiseSVN, then delete the folder from the filesystem (TortoiseSVN does not like unversioned subfolders ... why not???)

link|flag
I should add that I exported a folder TO THE SAME FOLDER .. this is how you unversion prev. versioned folders. – Anonymous Mar 12 at 14:41
vote up 0 vote down

just delete the .svn folders, then run a cleanup on the parent directory. Works perfectly!!

link|flag
vote up 1 vote down

Hi! I´ve the same problem and find a answer that help me a lot.

Try it.

look in your .svn folder, there will be a file in it called lock, delete that file and you will be able to updated. There may be more lock files in subfolders .svn directories, they will need deleting also, this could be done as a batch quite simply from the command line.

You are manually editing files in the .svn folder, they have been put there for a reason, that reason might be a mistake, but if not you could be damaging your local copies.

SOURCE : http://www.svnforum.org/2017/viewtopic.php?p=6068

link|flag
Worked great for me, thanks! – Tyler Egeto Sep 26 at 2:59
vote up 1 vote down

When i have this problem, i find running the cleanup command directly on the problem path generally seems to work. Then I'll run cleanup from the working root again, and it'll complain about some other directory. and i just repeat until it stops complaining.

link|flag
vote up 0 vote down

For me, the trick was to run 'svn cleanup' at the top of my working copy, not in the folder where I'd been working the whole time before the problem occurred.

link|flag

Your Answer

Get an OpenID
or

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