Adding files to Subversion with ‘@’ in the filename
Weird that this little issue doesn't show more results in Google. Apple's file naming convention for supporting 2x rez images for Retina Display support is to add "@2x" at the end of a file name, before the extension. All well and good, except that if you're using Subversion for version control, it borks when you try to add files with a '@' in the name. Solution? Add an additional '@' at the end of your line. So instead of
svn add Resources/Icon@2x.png
you entersvn add Resources/Icon@2x.png@
Done and done! (Source)
Comments