Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
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
24  
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
1  
Standard for ghetto old-style Matlab OO – Chinasaur May 4 '12 at 16:53

7 Answers

up vote 125 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@.

share|improve this answer
That did the trick, thanks! – weston Apr 16 '09 at 18:50
3  
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

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.

share|improve this answer
I also tested svn info icon@2x.png@ and it worked, too. Yes, no quotes or slashes! – Nate Apr 12 at 7:46
The necessity for quoting depends on your shell - I use KSH and for sure you need the quotes (as '@' is a sign you want a process run in the background). YMMV depending on shell. – David H Apr 12 at 12:51
Yep. My mileage was on the bash highway :) – Nate Apr 12 at 20:59
@Nate Now I cannot make it fail - its working fine without the quotes in ksh. I don't know why I thought I needed them - maybe some other issue - it was 2 years ago I posted this... – David H Apr 12 at 21:36

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

share|improve this answer

Solution for adding multiple files in different sub-folders:

for file in $(find ./ -type f -name "*@*.png"); do svn add $file@; done

Just replace the "png" in "@.png" to the kind of files you want to add.

share|improve this answer

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@'
share|improve this answer

@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

share|improve this answer

Double the @.

So try svn info 'test@@.txt'

share|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
Isn't is should be like svn info test@.txt@? – bahrep Oct 15 '12 at 12:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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