I have a lot of changes in a working folder, and something screwed up trying to do an update.
Now when I issue an \'svn cleanup\' I get:
>svn clea
$ ls -la .svn
$ rm -f .svn/lock
Then
$ svn update
Hope it helps
Subclipse gets confused by Windows' truly diabolical locking behaviour. Unlocker is your friend. This can find locked files and forcibly release the locks.
If all else fails:
It's possible that you have a problem with two filenames differing only by uppercase. If you ran into this problem, creating another working copy directory does not solve the problem.
Current Windows (i.e. crappy) filesystems simply do not grok the difference between Filename
and FILEname
. You have two possible fixes:
svn rename -m "broken filename case" http://server/repo/FILEname http://server/repo/filename
The latest verion (I'm using 1.9.5) solve this problem by adding an option of "Break locks" on the clean up menu. Just make sure this check box is selected when doing clean up.
I ran into that too lately. The trick for me was after selecting "Clean up", in the popup options dialog, check "Break Locks", and then "OK". It cleaned up successfully for me.