I need to check the image file, image@2x.png on Mac. When I try to use a command,
$ svn commit -m "another new file" image \ @ 2x.png
he does not work.
Then I tried to use a single quote around the file name as suggested in some other answers
$ svn commit -m "another new file" 'image \ @ 2x.png'
This does not work either.
Removing the backslash before @ also does not work.
$ svn commit -m "another new file" ' image@2x.png '
Any help is appreciated.
Thank.
source
share