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

I get this error when I do an svn update:

Working copy XXXXXXXX locked Please execute "Cleanup" command

When I run cleanup, I get

Cleanup failed to process the following paths: XXXXXXXX

How do I get out of this loop?

share|improve this question

32 Answers

1 2
up vote 312 down vote accepted

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.

share|improve this answer
64  
+1 to you for this workaround to fix not just the OP's problem (and mine), but also for giving the 5 steps that seem to fix any svn problem. -1 to subversion for needed such workarounds. – pxl Jan 17 '10 at 22:55
84  
6. Fight depression – Yannis May 22 '10 at 4:11
98  
7. Switch to GIT or HG – Skylar Saveland Jun 11 '10 at 19:15
10  
While this technically works, it is such a bad way to do this compared to removing the locks that it deserves a downvote. – Jukka Dahlbom May 2 '12 at 13:02
12  
Is it also possible to delete Subversion from the Internet? – brendan Aug 22 '12 at 0:12
show 10 more comments

Look in your .svn folder, there will be a file in it called lock. Delete that file and you will be able to update. There may be more lock files in the .svn directory of each subdirectory. They will need deleting also. This could be done as a batch quite simply from the command line with e.g.

find . -name 'lock' -exec rm -v {} \;

Note that 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 copy.

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

share|improve this answer
1  
Worked great for me, thanks! – Tyler Egeto Sep 26 '09 at 2:59
8  
+1 I think this is much better approach than the currently highest voted answer - I hate having to copy the files elsewhere first to get around this (common!) problem. Mine was caused by a code-generation tool generating files with the same name that someone else had already added to SVN. My bad for not "svn up" first i suppose... – alpian Nov 9 '10 at 15:59
1  
Thank you, this should be the accepted answer. – Sahuagin Jul 21 '11 at 22:11
32  
This doesn't work anymore with Tortoise/SVN 1.7 (or at least I couldn't find any lock file as there is now a centralised DB with the metadata). – pesche Oct 6 '11 at 6:59
10  
here's a quick one-liner that should recursively delete all locks starting in the current directory: find . | grep ".svn/lock" | xargs rm – Jesse Dec 8 '11 at 23:40
show 10 more comments

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.

share|improve this answer
4  
this worked for me with a client running 1.7, though the server is still 1.6.x – Mark Hosang Oct 31 '11 at 4:59
3  
this is the best option. I guarantee it – silentbang Jul 14 '12 at 19:43
show 16 more comments

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 its 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.

share|improve this answer
1  
Your second-step B) seems a very bad idea to me, as it would break the revision history for items of the original directory that are kept in the new version. – Dunaril Mar 30 '11 at 11:49
show 1 more comment

In my case I solved it by manually deleting a record in the SQLite ".svn\wc" file lock record in the WC_LOCK table.

I opened the "WC" file with SQLite editor and executed

delete from WC_LOCK

enter image description here

share|improve this answer
1  
This worked for me for Subversion 1.7.5 on Windows. Downloaded SQLite Expert trial version from here: sqliteexpert.com/download.html. Ran the "delete" sql statement above in the SQL tab. – M Katz Nov 14 '12 at 1:51
2  
A free DI SQL Spy would also do the trick: yunqa.de/delphi/doku.php/products/sqlitespy/index – Gad D Lord Jan 14 at 15:34
show 1 more comment

The easiest way to do this is show hidden folders and then open the .SVN folder. You should see a zero KB file named "lock" deleting this will fix the problem

share|improve this answer

I had this problem because external folders do not want to be linked into an existing folder. If you add an svn:externals property line where the destination is an existing (versioned or non-versioned) folder, you will get the SVN Woring Copy locked error. Here a cleanup will also tell you that everthing is all right but still updating won't work.

Solution: Delete the troubling folder from the repository and make an update in the root folder where the svn:externals property is set. This will create the folder and all will be fine again.

This problem arose for me because svn:externals for files requires the destination folder to be version controlled. After I noticed that this doesn't work across different repositories, I swaped from external files to external folder and got into this mess.

share|improve this answer

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.

share|improve this answer
1  
I couldn't find a lock file as with previous answers, but this worked for me :) – serenskye May 21 '12 at 8:54

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

share|improve this answer
1  
In SVN 1.7, this won't work because there is only one .svn folder, at the top. If deleted, the attachment to the repository is removed. – AnneTheAgile Dec 6 '12 at 17:47

If you're on a Windows machine, View the repository through a browser and you may well see two files with the same filename but using different cases. Subversion is case sensitive and Windows isn't so you can get a lock when Windows thinks it's pulling down the same file and Subversion doesn't. Delete the duplicate file names on the repository and try again.

share|improve this answer

I did it by just creating a new folder, checking out the project, copying the updated files to the new folder.

It was fixed with a fresh checkout.

share|improve this answer
show 1 more comment

I came across the exact same issue using SVN 1.7 and none of the fixes mentioned above worked.

Foremost, make sure you backup all your edited content.

After spending a couple of hours (didn't redownload everything as my branch is over 6gb in size), I found that there is a db file called "wc" in the .svn folder of your branch.

Open up the db file using any db manager (i used firefox's sqlite manager plugin) and navigate to WC_LOCK table. This table will have the entries for the acquired locks. Delete the records from the table and you're done :)

share|improve this answer
show 1 more comment

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.

share|improve this answer

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.

share|improve this answer

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???)

share|improve this answer
show 1 more comment

Do not delete your solution!

in the .svn folder you have a file called lock it is 0 bytes long

You can delete all these files from all the .svn folders in your solution and it will work

It worked in my case

share|improve this answer
1  
see this solution for svn 1.7: stackoverflow.com/a/12326057/932282 – mhu Oct 30 '12 at 23:04
show 2 more comments

In-place unversioning of the files, and a fresh checkout into the same location, has solved this problem for me.

In TortoiseSVN, to do an in-place unversioning, right-drag the root folder of the working copy from the file list onto itself in the directory tree, and choose "SVN Export versioned items here" from the pop-up menu. TortoiseSVN notices that the destination is the same as the source, and suggests unversioning the working copy.

After unversioning, do a fresh checkout into the same folder (which now contains an unversioned copy of all the files you had). TortoiseSVN will warn you that you are checking out into an existing folder, but you can go ahead.

After this, cleanups, updates and other operations worked without a hitch. Since both of the above steps preserve local modifications, there should not be any loss of information (but backing the working copy up before this may nevertheless be a good idea).

One warning: If the working copy contains mixed versions or uncommitted property changes, that information WILL be lost. For me, this is not a common occurrence, and given the choice of a corrupt working copy or losing uncommitted property changes, I tend to opt for the latter.

share|improve this answer

If you're on Linux, try this:

find "/the/path/to/your/directory" -name .svn -type d | xargs chmod 0777 -R

Then run the cleanup command on that directory, then try to update.

share|improve this answer

I did the following to fix my issue:

  1. Renamed the offending folder by placing an "_" in front of the folder name.
  2. Did a "Clean Up" of the parent folder.
  3. Renamed the offending folder back to it original name.
  4. Did a commit.
share|improve this answer
show 1 more comment

In Versions under Mac OS: Action -> Cleanup working copy locks at...

share|improve this answer

This one worked for me.

  1. Go to the root folder,
  2. Right click and cleanup
  3. Check all available options
  4. Press ok

After clean up it will allow you to update to the latest version.

share|improve this answer

I had this under TortoiseSVN and the error was related to a new directory I'd created under a new project. I had just created this project, so there was no way this directory had existed before. I looked in the repository browser and the new folder was indeed already in the repository, but TortoiseSVN didn't show it as committed.

In order to get around it, since I'd just created the folder anyway, I deleted it in the repository, and then did a commit. It worked fine.

Since I did this outside of Visual Studio, I then had to restart Visual Studio for it to figure everything out again.

share|improve this answer

Start Search....Lock...Select all files listed and delete..fixed

share|improve this answer

the following should do:

svn status | grep ". L" | sed 's/.* (.*)$/\1/' | awk '{print length($1),$1}' | sort -nr | awk '{print "pushd " $2 "; svn cleanup ; popd"}' | sh

share|improve this answer

@Chuck's solution wasn't practical for me. In the first time I had the problem, it worked but also gave lots extra-work. In the second case, I changed loads of file while I was using my notebook outside the network. I couldn't see myselft going folder by folder after the changed files. Had hope on tortoise and worked. See how:

Environment Was:

  1. Visual Studio 2008
  2. Ankhsvn

Procedure:

  1. First I couldn't commmit, it said that I needed to clean up
  2. Second, I couldn't clean up, there was a folder out of the svn - "bin"
  3. I downloaded Tortoise lastest version, tried and doesn't work due to dammed folder.
  4. Renamed that folder and now I could Update the local repository with the lasted version.
  5. A couple of files came in.
  6. Did the commit and worked.
share|improve this answer

I had a file in my root directory that was messing it up. (No lock files, svn cleanup failed, etc.) My whole checkout is > 2GB with slow network speeds, so checking everything out again wasn't a great option for me.

What worked for me:

  1. Reverted & reverted change in the messed up working copy (#1).
  2. Checked out another copy of the repo (#2) with --depth empty
  3. Added and committed the file in the new working copy (#2).
  4. Updated in the original working copy (#1).

Seemed to be back to normal for me.

share|improve this answer

I had this problem where the "clean up" worked, but the "update" would continue to fail. The solution that worked was to delete the folder in question via Windows Explorer, not TortoiseSVN's delete (which marks the deletion as something to commit to the repository, and then I did a "checkout" to essentially "update" the folder from the respository.

More info on the difference between an O/S delete and an SVN delete here: http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-rename.html

Notably:

When you TortoiseSVN → Delete a file, it is removed from your working copy immediately as well as being marked for deletion in the repository on next commit.

And:

If a file is deleted via the explorer instead of using the TortoiseSVN context menu, the commit dialog shows those files and lets you remove them from version control too before the commit. However, if you update your working copy, Subversion will spot the missing file and replace it with the latest version from the repository.

share|improve this answer

Spotlight is its usual rubbish self at finding the lock files recursively.

EasyFind on Mac App Store works

http://itunes.apple.com/gb/app/easyfind/id411673888?mt=12

search for 'lock'

Select all / Delete

share|improve this answer

Updating the directory permissions (granting write access) solves the problem as well.

chmod +w <dir_name>
share|improve this answer

I had the same problem. Seems it has been fixed in the latest versions. I have updated my Tortoise SVN to the latest version (1.7.11) and clean up has worked well.

You can download the latest version here: downoad tortoise svn.

share|improve this answer
1 2

protected by Jeff Atwood Dec 29 '10 at 2:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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