/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Gordon Tyler
  • Date: 2011-09-09 12:42:32 UTC
  • mto: (6015.33.4 2.4)
  • mto: This revision was merged to the branch mainline in revision 6134.
  • Revision ID: gordon@doxxx.net-20110909124232-ip0bgx4tx6y5fya6
Use get_user_option in get_merge_tools so that quoted values are correctly unquoted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
``-r`` オプションによって、ツリーは前のリビジョン、もしくは示された2つのリビジョンの違いを表示します::
39
39
 
40
 
    % bzr diff -r 1000..          # everything since r1000
41
 
    % bzr diff -r 1000..1100      # changes from 1000 to 1100
 
40
    % bzr diff -r 1000..          # r1000 からの全ての変更
 
41
    % bzr diff -r 1000..1100      # 1000 から 1100 までの変更
 
42
 
 
43
1つのリビジョンの変更だけを見たい場合は、 ``-c`` オプションを利用します。
 
44
 
 
45
::
 
46
 
 
47
    % bzr diff -c 1000            # r1000 による変更
 
48
                                  # -r999..1000 と同じ意味
42
49
 
43
50
``--diff-options`` オプションによってbzrは外部のdiffプログラムにオプションを渡して実行します。例です::
44
51