~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/ja/user-guide/entering_commands.txt

  • Committer: Vincent Ladeuil
  • Date: 2010-01-25 15:55:48 UTC
  • mto: (4985.1.4 add-attr-cleanup)
  • mto: This revision was merged to the branch mainline in revision 4988.
  • Revision ID: v.ladeuil+lp@free.fr-20100125155548-0l352pujvt5bzl5e
Deploy addAttrCleanup on the whole test suite.

Several use case worth mentioning:

- setting a module or any other object attribute is the majority
by far. In some cases the setting itself is deferred but most of
the time we want to set at the same time we add the cleanup.

- there multiple occurrences of protecting hooks or ui factory
which are now useless (the test framework takes care of that now),

- there was some lambda uses that can now be avoided.

That first cleanup already simplifies things a lot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
コマンドを入力する
 
2
===================
 
3
 
 
4
ユーザーインターフェイス
 
5
-------------------------
 
6
 
 
7
Bazaarに対して利用可能な数多くのユーザーインターフェイスが存在します。
 
8
コアパッケージは **bzr** と呼ばれるコマンドラインツールを提供し
 
9
グラフィカルユーザーインターフェイス(GUI)はプラグインとして利用できます。
 
10
 
 
11
bzrを使う
 
12
---------
 
13
 
 
14
構文は次のとおりです::
 
15
 
 
16
  bzr [グローバルオプション] command [オプションと引数]
 
17
 
 
18
グローバルオプションはBazaarの動作方法に影響を与え ``command`` の前後に現れます。コマンド特有のオプションはコマンドの後で指定しなければなりませんが、コマンド固有の引数の前後と間で指定することができます。
 
19
 
 
20
共通のオプション
 
21
-----------------
 
22
 
 
23
下記で示されるいくつかのオプションはすべてのコマンドに対して有効です。
 
24
 
 
25
  ==========  =========  =================
 
26
  短い形式    長い形式   説明
 
27
  ==========  =========  =================
 
28
  -h          --help     get help
 
29
  -v          --verbose  be more verbose
 
30
  -q          --quiet    be more quiet
 
31
  ==========  =========  =================
 
32
 
 
33
Quietモードはエラーと警告のみを表示します。これはスクリプトで使う際に便利です。
 
34
 
 
35
注: 大抵のコマンドは1つのレベルの冗長性だけをサポートします。今後これは変更されるかもしれません。
 
36
高度な冗長性を求めるためには、-vオプションを複数回指定するだけです。