LoginSignup
1

More than 3 years have passed since last update.

アットマーク(@)を含む名前のファイルをSubversionで扱う方法

Last updated at Posted at 2015-11-13

ファイル名の末尾に@を付けます。

通常は下記のようにエラーとなりますが:

% svn add aaa@bbb.txt
svn: E200009: 'aaa@bbb.txt': a peg revision is not allowed here

ファイル名の末尾に@を付けると、末尾の@は無視されてaaa@bbb.txtというファイル名として認識されます:

% svn add aaa@bbb.txt@
A         aaa@bbb.txt

参考

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1