/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 bzrlib/help_topics/en/configuration.txt

  • Committer: Jelmer Vernooij
  • Date: 2011-01-23 00:24:17 UTC
  • mto: (5622.4.1 uninstall-hook)
  • mto: This revision was merged to the branch mainline in revision 5669.
  • Revision ID: jelmer@samba.org-20110123002417-1vnpr8dvkz8ysfhd
more tests.

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
 
62
75
BZR_PLUGIN_PATH
63
76
~~~~~~~~~~~~~~~
64
77
 
77
90
 
78
91
As for the ``PATH`` variables, if multiple directories are
79
92
specified in ``BZR_PLUGIN_PATH`` they should be separated by the
80
 
platform specific appropriate character (':' on Unix/Linux/etc,
 
93
platform specific appropriate character (':' on Unix,
81
94
';' on windows)
82
95
 
83
96
By default if ``BZR_PLUGIN_PATH`` is set, it replaces searching
166
179
The path where Bazaar should look for shell plugin external commands.
167
180
 
168
181
 
 
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
 
169
191
Configuration files
170
192
-------------------
171
193
 
172
194
Location
173
195
~~~~~~~~
174
196
 
175
 
Configuration files are located in ``$HOME/.bazaar`` on Linux/Unix and
 
197
Configuration files are located in ``$HOME/.bazaar`` on Unix and
176
198
``C:\Documents and Settings\<username>\Application Data\Bazaar\2.0`` on
177
199
Windows. (You can check the location for your system by using
178
200
``bzr version``.)
300
322
    create_signatures = always
301
323
    check_signatures  = always
302
324
 
303
 
    [http://bazaar-vcs.org/bzr/*]
 
325
    [http://example.com/bzr/*]
304
326
    check_signatures  = require
305
327
 
306
328
The authentication configuration file, authentication.conf
482
504
    whether the format deprecation warning is shown on repositories that are
483
505
    using deprecated formats.
484
506
 
 
507
default_format
 
508
~~~~~~~~~~~~~~
 
509
 
 
510
A format name for the default format used when creating branches.  See ``bzr
 
511
help formats`` for possible values.
 
512
 
 
513
 
 
514
Unicode options
 
515
---------------
 
516
 
 
517
output_encoding
 
518
~~~~~~~~~~~~~~~
 
519
 
 
520
A Python unicode encoding name for text output from bzr, such as log
 
521
information.  Values include: utf8, cp850, ascii, iso-8859-1.  The default
 
522
is the terminal encoding prefered by the operating system.
 
523
 
485
524
 
486
525
Branch type specific options
487
526
----------------------------