バージョン管理システム Bazaar で、commit 時につくユーザー名 (+ メール・アドレス) の設定方法が変わったのでメモ。
設定ファイルは
- ~/.bazaar/bazaar.conf
ここに、次のやうに書く。
[DEFAULT] email=Masayuki Ataka <foo.bar@hogehoge.com>
設定が上手くいったかどうか確かめるには、bazaar 管理下のディレクトリーで次のコマンドを打つ。
$ bzr whoami Masayuki Ataka <foo.bar@hogehoge.com>
設定した名前が表示されれば OK。
ちなみに、email の設定方法は bzr コマンドを使って得られる。このエントリーも、そのヘルプを見て書いた。せっかくなので、全文引用しませう。
$ bzr help files Files On Linux: ~/.bazaar/bazaar.conf On Windows: C:\\Documents and Settings\\username\\Application Data\\bazaar\\2.0\\bazaar.conf Contains the user's default configuration. The section ``[DEFAULT]`` is used to define general configuration that will be applied everywhere. The section ``[ALIASES]`` can be used to create command aliases for commonly used options. A typical config file might look something like: [DEFAULT] email=John Doe <jdoe@isp.com> [ALIASES] commit = commit --strict log10 = log --short -r -10..-1
No comments:
Post a Comment