I get this error when I do an svn update:
Working copy XXXXXXXX locked Please execute \"Cleanup\" command
When I
This one worked for me.
After clean up it will allow you to update to the latest version.
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.
I did the following to fix my issue:
just delete the .svn folders, then run a cleanup on the parent directory. Works perfectly!!
In solution explorer, right click on the project, in the opening sub-menu click on subversion and select clean-up. It will solve the problem, as it did for me. Hope it will work.
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