I need to check in the image file, image@2x.png in Mac. When I try to use the command,
$ svn commit -m "another new file" image\@2x.png
it doesn't work.
I then tried using single quote around the file name as suggested in some other answers
$ svn commit -m "another new file" 'image\@2x.png'
That also doesn't seem to work.
Removing the backslash before the @ also doesn't seem to work.
$ svn commit -m "another new file" 'image@2x.png'
Any help is appreciated.
Thanks.