When it’s ready.

出来るまで出来ない

OSX 10.5 LeopardでSVN

コミットする為に一カ所変更

コミット時に、コメントを入れる必要があるのか、EDITORの設定が必要になる。ホームディレクトリに、.subversion/というディレクトリ内のconfigファイルをいじります。

$ cd .subversion/
$ vim config 

んで、開いたコンフィグファイルの27行目付近の"editor-cmd"というコメントアウトされているやつをアンコメントして、vimあたりに書き換える。

### Section for configuring external helper applications.
[helpers]
### Set editor to the command used to invoke your text editor.
###   This will override the environment variables that Subversion
###   examines by default to find this information ($EDITOR,
###   et al).
# editor-cmd = editor (vi, emacs, notepad, etc.)
editor-cmd = vi
### Set diff-cmd to the absolute path of your 'diff' program.
###   This will override the compile-time default, which is to use
###   Subversion's internal diff implementation.

こんな感じかな。
これで普通に動いています。