svnコマンドを打つ度に「パスワードを保存しますか?」と聞かれるのを抑制する

svnコマンドを打つと以下のようなメッセージが出ます。

-----------------------------------------------------------------------
ATTENTION! Your password for authentication realm:

<http://svn.server_name:80> Authorization Realm

can only be stored to disk unencrypted! You are advised to configure
your system so that Subversion can store passwords encrypted, if
possible. See the documentation for details.

You can avoid future appearances of this warning by setting the value
of the 'store-plaintext-passwords' option to either 'yes' or 'no' in
'/root/.subversion/servers'.
-----------------------------------------------------------------------
暗号化されていないパスワードを保存しますか (yes/no)?

表示を抑制するにはconfigファイルを編集します。

$ vi ~/.subversion/config

### Section for authentication and authorization customizations.
[auth]

#以下2行を追加
store-passwords = no
store-plaintext-passwords = no
### Set password stores used by Subversion. They should be

保存したユーザ情報は、~/.subversion/auth/svn.simple/ に保存されているので、セキュリティ上消しておくこと。

svnコマンドを打つ度に「パスワードを保存しますか?」と聞かれるのを抑制する