How to delete "-" file from svn?
Posted
by ~brzeti
on Stack Overflow
See other posts from Stack Overflow
or by ~brzeti
Published on 2010-05-28T12:29:50Z
Indexed on
2010/05/28
12:31 UTC
Read the original article
Hit count: 156
Accidentally I have created file "-" (just a minus) in a directory and commited it. I have to delete it because its causing error on other machines: svn: Can't convert string from 'UTF-8' to native encoding: svn: ?\226?\128?\147
I can remove it from local directory using "rm -i *" or with python "os.remove('\xe2\x80\x93')" but those methods do not work with "svn rm".
How to delete such file from svn repository?
© Stack Overflow or respective owner