For many Subversion operations, appending the '@' symbol to the end of a file or URL argument allows you to target a specific revision of that file. For example, "svn info test.txt@1234" will give information about test.txt as it existed in revision 1234.

However, when the name of the file contains an @, it is incorrectly interpreted by Subversion as a revision specifier:

svn info 'test@.txt' svn: Syntax error parsing revision '.txt'

I've tried double and single quotes as well as escaping with '/', '\', and '@'. How can I tell Subversion to treat the @ symbols as part of the file name?

link|improve this question

25% accept rate
1  
Why on earth do you have filenames with @ in them? Asking for trouble, if you ask me... :-) – JesperE Apr 16 '09 at 18:28
Very good question! :) I'm taking over a project where this character is a fundamental component of the file naming conventions and unfortunately this cannot be changed in the near future. – weston Apr 16 '09 at 18:43
13  
Apple created this convention for all its iOS developers as of iOS 4+. All assets should be named @2x if they are for a high res display... – Dimitris Sep 14 '10 at 13:57
Standard for ghetto old-style Matlab OO – Chinasaur May 4 at 16:53
feedback

6 Answers

up vote 65 down vote accepted

From the SVN book (emphasis added):

The perceptive reader is probably wondering at this point whether the peg revision syntax causes problems for working copy paths or URLs that actually have at signs in them. After all, how does svn know whether news@11 is the name of a directory in my tree or just a syntax for “revision 11 of news”? Thankfully, while svn will always assume the latter, there is a trivial workaround. You need only append an at sign to the end of the path, such as news@11@. svn cares only about the last at sign in the argument, and it is not considered illegal to omit a literal peg revision specifier after that at sign. This workaround even applies to paths that end in an at sign—you would use filename@@ to talk about a file named filename@.

link|improve this answer
That did the trick, thanks! – weston Apr 16 '09 at 18:50
1  
Note that for using "svn diff" you need to add revision parameter. "svn up @file@" works, but "svn diff @file@" doesn't work. You need to use "svn diff -r HEAD @file@" – analytik Oct 18 '11 at 14:38
feedback

The original answer is correct, but perhaps not explicit enough. The particular unix command line options are as follows:

svn info 'image@2x.png@'

or

svn info "image@2x.png@"

or

svn info image\@2x.png\@

I just tested all three.

link|improve this answer
feedback

to add the following file : image@2x.png do the following: svn add image\@2x.png@

link|improve this answer
feedback

In my case I needed to remove files from a SVN repo that contained an @ sign:

This wouldn't work:

svn remove 'src/assets/images/hi_res/locales-usa@2x.png'

But this did:

svn remove 'src/assets/images/hi_res/locales-usa@2x.png@'
link|improve this answer
feedback

@David H

I just tried a similar command without escaping the @ symbols and it still works fine

svn ci splash.png splash@2x.png@

This is on GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin10.0) and svn 1.6.16

link|improve this answer
feedback

Double the @.

So try svn info 'test@@.txt'

link|improve this answer
Unfortunately this yields the same results: "svn: Syntax error parsing revision '.txt'". Thanks for the suggestion though! – weston Apr 16 '09 at 18:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.