Folder is locked and I can't unlock it

SvnTortoisesvn

Svn Problem Overview


When I'm trying to update or commit code from a project it's telling me that the folder is locked. When I try to "release lock" it says that there's nothing to unlock in this working space.

What does that mean? Why I can't update, commit or even clean up the project.

Svn Solutions


Solution 1 - Svn

Right click on your Subversion working directory folder, and select TortoiseSVN->Clean Up from the Context Menu. This will recurse it's way through your working directory and cleanup any incomplete actions, remove the local locks (which is different from using Subversion locking of a file in the repository which lets everyone know about the lock).

If that doesn't work, see if you can find the names of the files that were changed, but not yet committed, save them, and redo the checkout.

Solution 2 - Svn

If the file was locked by yourself(same svn account), you can follow these steps:

Right click on the locked file or folder, and select TortoiseSVN->Get lock... , and check on "[] Steal the locks" at the bottom left corner of the dialog, click "OK". If it complete successfully, that's ok. When you right click on the file again, you can see TortoiseSVN->Release lock..., click to unlock.

Solution 3 - Svn

Using svn command line to unlock the local folders, just use svn cleanup.

Before:

# svn commit -m "fixing #1234"

commit

# svn st

before

# svn cleanup

After:

# svn st

after

# svn commit -m "fixing #1234"

after2

Solution 4 - Svn

To anyone still having this issue (Error: Working copy '{DIR}' locked.), I have your solution:

I found that when one of TortoiseSVN windows crash, it leaves a TSVNCache.exe that still has a few handles to your working copy and that is causing the Lock issues you are seeing (and also prevents Clean Up from doing it's job).

So to resolve this:

Either

1a) Use Process Explorer or similar to delete the handles owned by TSVNCache.exe

1b) ..Or even easier, just use Task Manager to kill TSVNCache.exe

Then

  1. Right click -> TortoiseSVN -> Clean up. Only "Clean up working copy status" needs to be checked.

From there, happy updating/committing. You can reproduce Lock behavior by doing SVN Update and then quickly killing it's TortoiseProc.exe process before Update finishes.

Solution 5 - Svn

This was the first time I had this issue. I even tried to restart PC, without effect. This solves my problem:

Solution for me:

  1. Right Click on Project Working Directory.
  2. Navigate TortoiseSVN.
  3. Navigate To Clean Up.
  4. Leave all default options, and check Break Locks
  5. Click OK

This works for me. I was able to commit changes.

Solution 6 - Svn

To unlock a file in your working copy from command prompt that is currently locked by another user, use --force option.

$ svn unlock --force tree.jpg

Solution 7 - Svn

I had this issue and i have done below steps to resolve it:

  1. Go to parent folder instead of child folder
  2. Select SVN cleanup
  3. Click on OK.

Do this step on parent folder instead of child folder!

It worked for me !

Solution 8 - Svn

I was moving a folder up one level and into another folder. My mistake was doing the move from within the parent folder.

Bad example:

pwd -> C:\Repo\ParentDir\
svn move ./DirtoCopy ../AnotherDir

SVN needs to update the parent directory with the deleted folders info.
You have to do it from the common root of the source and destination folders or use full paths.

Good example:

svn move C:\Repo\ParentDir\DirtoCopy C:\Repo\NewLocation

Solution 9 - Svn

To unlock a blocked document:

  1. Right click -> Lock
  2. Check the "Steal the locks" check box
  3. Release the lock

Solution 10 - Svn

I had this problem where I couldn't unlock a file from the client side. I decided to go to the sever side which was much simpler.

On SVN Server:

Locate locks

 svnadmin lslocks /root/of/repo
 (in my case it was var/www/svn/[name of Company])

 You can add a specific path to this by svnadmin lslocks /root/of/repo "path/to/file"

Remove lock

 svnadmin rmlocks /root/of/repo “path/to/file” 

That's it!

Solution 11 - Svn

Solution :

  1. Right Click on Project Working Directory.
  2. Navigate TortoiseSVN.
  3. Navigate To Clean Up.
  4. Select Clean up working copy status(make checked mark)
  5. Click OK
  6. Repeat Step 1 and 2 then navigate to release Lock.
  7. Click OK Your project lock get opened.

Solution 12 - Svn

In addition to David M's answer, while doing cleanup -> check 'break locks' option. This will ensure release of locks. Then do svn update. This worked for me.

Solution 13 - Svn

I research a lot on this issue but no solution fix my problem until I try this:

My repo folder is shared with a Windows xp virtual machine, so I execute the clean up from the VM and then execute SVN UPDATE from the host.

It worked for me.

Greetings from Costa Rica.

Solution 14 - Svn

I was able to resolve this issue on my machine by renaming folders to make the folder path smaller.

Solution 15 - Svn

I encountered similar issue, it told me that some files has been locked by xx. However, xx said he has release lock and he cannot find the lock on TortoiseSVN.

clean up doesn't work for me. I have to ask he go to TortoiseSVN -> Repo-browser, find the corresponding files, then right click these files and choose break lock.

Solution 16 - Svn

I had this happen after having Tortoise get corrupted and crash while trying to update folders. I ended up re-installing Tortoise, but the ghost lock was still present. From there I had to delete the folder and do a new checkout. Obviously I got really lucky that I didn't have any new changes to commit at the time. Anyhow, not great news, and if anyone has a better solution I'd love to hear it myself. Even using "Break Lock" ie unlock with the force option did not change anything.

Solution 17 - Svn

Clean up, check all check box => This work for me

Solution 18 - Svn

I encountered this problem after these operations:

  1. get lock on folder
  2. modify files
  3. remove files and update folders --> new files downloaded
  4. try to commit or release lock

I finally resolved the problem by forcing the lock again : TortoiseSVN --> Get Lock --> check "steal lock" then commit or release lock.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionIyad Al aqelView Question on Stackoverflow
Solution 1 - SvnDavid W.View Answer on Stackoverflow
Solution 2 - SvncuixipingView Answer on Stackoverflow
Solution 3 - SvnSebasView Answer on Stackoverflow
Solution 4 - SvnJonathon J HoweyView Answer on Stackoverflow
Solution 5 - SvnWilliamKView Answer on Stackoverflow
Solution 6 - Svnmanav m-nView Answer on Stackoverflow
Solution 7 - SvnAkhileshView Answer on Stackoverflow
Solution 8 - Svnrasky74View Answer on Stackoverflow
Solution 9 - Svnuser7257040View Answer on Stackoverflow
Solution 10 - SvnStackerView Answer on Stackoverflow
Solution 11 - SvnVinayakView Answer on Stackoverflow
Solution 12 - SvnVinayakumar KView Answer on Stackoverflow
Solution 13 - SvnLuisca94View Answer on Stackoverflow
Solution 14 - SvnrsivakumarView Answer on Stackoverflow
Solution 15 - SvnfrankView Answer on Stackoverflow
Solution 16 - SvnJMMView Answer on Stackoverflow
Solution 17 - SvnĐức Thắng NguyễnView Answer on Stackoverflow
Solution 18 - Svnmed_alpaView Answer on Stackoverflow