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

If you have worked with SVN tools in Eclipse (Subversion, subversive) before, then you are likely familiar with the 'working copy 'XXX' locked..." error.

I found a very useful post with a workaround for this problem at: SVN Working Copy xxx locked and cleanup failed

As great as the workaround is, it is a pain to do it over and over again. Does anyone know why I keep getting this error and what steps I could take to prevent it?

Context: I am creating an Eclipse plugin that involves listening for SVN events, so in testing this plugin, I am constantly opening and closing the workspace. I usually do 1 or 2 commits each time I open the workspace. Every so often the commit will fail and I get the 'working copy locked' error. I would love for this error to not happen anymore, so any advice is appreciated.

Thanks!

share|improve this question

6 Answers

Generally a .lock file is created and it decides lock/unlock state checking the existince of this file. I think if you delete this .lock file only, then the problem will go away.

share|improve this answer
2  
i'm not at my computer to test it.. but doesn't svn cleanup fix that as well? I know I usually just delete the .lock file :p – Kenny Cason Feb 1 '11 at 17:55
Why does it get locked though? I never asked for it to be locked and I don't think my interactions with Eclipse or subversion warrant it being locked. Also, under the team options, there are lock and unlock options. During this error, the Lock option is enabled, and the Unlock option is disabled. – Treebranch Feb 1 '11 at 17:57
SVN cleanup fails too. That doesn't seem to be a way to solve this issue. – Treebranch Feb 1 '11 at 17:58
@Treebranch It is probably locking because of one of the reasons I mentioned above. Also @Daniel makes a good point – Kenny Cason Feb 1 '11 at 17:59
@KennyCason it should, if it works. @Treebranch I think when it starts the commit, it creates this file and then removes it when the commit is completed. There may be other cases as well to create this file. however, it normally should not be staying forever. I guess sometimes, bugs, it fails to delete the lock file and then it assumes there is an ongoing operation which will affect the stability of the source and does not allow any change. However, normally there is a reason for that file to be there. :) – fmucar Feb 1 '11 at 18:01
show 7 more comments

I've had a lot of issues with SVN before and one thing that has definitely caused me problems is modifying files outside of Eclipse or manually deleting folders (which contains the .svn folders), that has probably given me the most trouble.

edit You should also be careful not to interrupt SVN operations, though sometimes a bug may occur and this could cause the .lock file to not be removed, and hence your error.

share|improve this answer
You make a good point, I believe the reason I was getting the errors is because I was debugging my plugin and the breakpoints were interrupting the SVN commands. – Treebranch Nov 23 '11 at 1:59

I had the same problem using the com.xxx.service.model package.

To fix it, I first made a backup of the code changes in the model package. Then deleted model package and synchronized with the repository. It will show incoming the entire folder/package. Then updated my code.

Finally, paste the old code commit to the SVN Repository. It works fine.

share|improve this answer
up vote 1 down vote accepted

After more exploration and testing, it appears that this issue was being caused by debugging the plugin and using breakpoints. SVN/Subclipse apparently didn't like having breakpoints midway through their execution and as a result this lock files were being created. As soon as I started just running the plugin, this issue disappeared.

share|improve this answer

This happened to me when I copied a directory from another subversion project and tried to commit. The soluction was to delete the .svn director inside the directory I wanted to commit.

share|improve this answer

I got the same problem too.You can deal with it like this.first, backup your local files where there can not been synchronized.then delete such files and checkout from svn server.at last ,you can check the svn server files with the locals

share|improve this answer
I guess this should be comment – Nimit Dudani Nov 6 '12 at 5:58

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.