It sounds like your problem is on the svn side. In our case, the developer aborted the svn update command for the directory. If you cannot delete the entire directory, you can follow these steps, which work for me in svn 1.6.11:
$ cd {directory_with_file} $ cd .svn $ vi all-wcprops
Find the file name you are looking for, you should see similarly:
END {FILENAME} K 25 svn:wc:ra_dav:version-url V 123 /{URL}/!svn/ver/19811/{PROJECT}/trunk/{PATH_TO_FILE} END
Delete all lines between "END" and also one line "END". Save the file as read-only.
$ vi entries
Find the file name you are looking for, you should see similarly:
^L {FILENAME} file {whitespace} 2012-09-14T07:37:36.000000Z b32c5eec03f4be5c09fa7d9c71bac5ce 2012-09-13T07:13:43.808544Z 20167 {COMMITTER} {whitespace} 11157 ^L
Delete all lines between '^ L', including one line of '^ L'. Save the file as read-only.
$ cd text-base $ rm {FILENAME} $ cd ../../ $ rm {FILENAME} ; svn update {FILENAME}
Fbd
source share