~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/configuration.txt

  • Committer: Martin Pool
  • Date: 2010-04-21 11:27:04 UTC
  • mto: This revision was merged to the branch mainline in revision 5189.
  • Revision ID: mbp@canonical.com-20100421112704-zijso22b6pdevrxy
Simplify various code to use user_url

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
 
60
60
Path to the editor Bazaar should use for commit messages, etc.
61
61
 
62
 
BZR_LOG
63
 
~~~~~~~
64
 
 
65
 
Location of the Bazaar log file. You can check the current location by
66
 
running ``bzr version``.
67
 
 
68
 
The log file contains debug information that is useful for diagnosing or
69
 
reporting problems with Bazaar.
70
 
 
71
 
Setting this to ``NUL`` on Windows or ``/dev/null`` on other platforms
72
 
will disable logging.
73
 
 
74
 
 
75
62
BZR_PLUGIN_PATH
76
63
~~~~~~~~~~~~~~~
77
64
 
90
77
 
91
78
As for the ``PATH`` variables, if multiple directories are
92
79
specified in ``BZR_PLUGIN_PATH`` they should be separated by the
93
 
platform specific appropriate character (':' on Unix,
 
80
platform specific appropriate character (':' on Unix/Linux/etc,
94
81
';' on windows)
95
82
 
96
83
By default if ``BZR_PLUGIN_PATH`` is set, it replaces searching
179
166
The path where Bazaar should look for shell plugin external commands.
180
167
 
181
168
 
182
 
http_proxy, https_proxy
183
 
~~~~~~~~~~~~~~~~~~~~~~~
184
 
 
185
 
Specifies the network proxy for outgoing connections, for example::
186
 
 
187
 
  http_proxy=http://proxy.example.com:3128/ 
188
 
  https_proxy=http://proxy.example.com:3128/
189
 
 
190
 
 
191
169
Configuration files
192
170
-------------------
193
171
 
194
172
Location
195
173
~~~~~~~~
196
174
 
197
 
Configuration files are located in ``$HOME/.bazaar`` on Unix and
 
175
Configuration files are located in ``$HOME/.bazaar`` on Linux/Unix and
198
176
``C:\Documents and Settings\<username>\Application Data\Bazaar\2.0`` on
199
177
Windows. (You can check the location for your system by using
200
178
``bzr version``.)
505
483
    using deprecated formats.
506
484
 
507
485
 
508
 
Unicode options
509
 
---------------
510
 
 
511
 
output_encoding
512
 
~~~~~~~~~~~~~~~
513
 
 
514
 
A Python unicode encoding name for text output from bzr, such as log
515
 
information.  Values include: utf8, cp850, ascii, iso-8859-1.  The default
516
 
is the terminal encoding prefered by the operating system.
517
 
 
518
 
 
519
486
Branch type specific options
520
487
----------------------------
521
488
 
528
495
~~~~~~~~~~~~~~~~~~~~~
529
496
 
530
497
If set to "True" then revisions can only be appended to the log, not
531
 
removed.  A branch with this setting enabled can only pull from another
532
 
branch if the other branch's log is a longer version of its own.  This is
533
 
normally set by ``bzr init --append-revisions-only``. If you set it
534
 
manually, use either 'True' or 'False' (case-sensitive) to maintain
535
 
compatibility with previous bzr versions (older than 2.2).
 
498
removed.  A branch with this setting enabled can only pull from
 
499
another branch if the other branch's log is a longer version of its
 
500
own.  This is normally set by ``bzr init --append-revisions-only``.
536
501
 
537
502
parent_location
538
503
~~~~~~~~~~~~~~~