In Mac and iOS development it is common to have files that contain the @
sign (e.g. MyImage@2x.png
).
If you want to check these kinds of files into a Subversion repository, it won't work:
% svn add MyImage.png
A (bin) MyImage.png
% svn add MyImage@2x.png
svn: warning: 'MyImage' not found
How can these files be added to svn
repositories?