[svn] $Id$の展開

既にsvn addしちゃったファイルに対して有効にしたい場合。

svn ps svn:keywords Id *.pm

今後svn addする全てのファイルに対して有効にしたい場合は「~/.subversion/config」を編集。

enable-auto-props = yes		★ここはコメントを外すだけ

### Section for configuring automatic properties.
[auto-props]
### The format of the entries is:
###   file-name-pattern = propname[=value][;propname[=value]...]
### The file-name-pattern can contain wildcards (such as '*' and
### '?').  All entries which match will be applied to the file.
### Note that auto-props functionality must be enabled, which
### is typically done by setting the 'enable-auto-props' option.
# *.c = svn:eol-style=native
# *.cpp = svn:eol-style=native
# *.h = svn:eol-style=native
# *.dsp = svn:eol-style=CRLF
# *.dsw = svn:eol-style=CRLF
# *.sh = svn:eol-style=native;svn:executable
# *.txt = svn:eol-style=native
# *.png = svn:mime-type=image/png
# *.jpg = svn:mime-type=image/jpeg
# Makefile = svn:eol-style=native
*.pm = svn:keywords=Id		★ここは行追加