Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn cannot delete file with @@ in its name

Tags:

benson@cn0:/u1/benson/corpora/he/walla$ svn rm "_12_@@_live.xml"
svn: '_12_@' does not exist

The file with the full name is in there, I got it from svn co. Now I'm trying to get rid of it.

Does anyone know how to persuade it not to stop at the first @?

like image 983
bmargulies Avatar asked Dec 21 '09 22:12

bmargulies


1 Answers

Try adding @HEAD or @ to the end (after .xml). Just a guess. If that doesn't work, try the same, but using the URL to repository (e.g. http://localhost/svn/path/file@rev )

It seems to try to interpret the @something part as the revision.

like image 100
Michael Krelin - hacker Avatar answered Oct 11 '22 03:10

Michael Krelin - hacker