/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: Andrew Bennetts
  • Date: 2011-01-06 06:26:23 UTC
  • mto: This revision was merged to the branch mainline in revision 5612.
  • Revision ID: andrew.bennetts@canonical.com-20110106062623-43tda58mqroybjui
Start of a developer doc describing how fetch works.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
 
91
91
As for the ``PATH`` variables, if multiple directories are
92
92
specified in ``BZR_PLUGIN_PATH`` they should be separated by the
93
 
platform specific appropriate character (':' on Unix/Linux/etc,
 
93
platform specific appropriate character (':' on Unix,
94
94
';' on windows)
95
95
 
96
96
By default if ``BZR_PLUGIN_PATH`` is set, it replaces searching
179
179
The path where Bazaar should look for shell plugin external commands.
180
180
 
181
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
 
182
191
Configuration files
183
192
-------------------
184
193
 
185
194
Location
186
195
~~~~~~~~
187
196
 
188
 
Configuration files are located in ``$HOME/.bazaar`` on Linux/Unix and
 
197
Configuration files are located in ``$HOME/.bazaar`` on Unix and
189
198
``C:\Documents and Settings\<username>\Application Data\Bazaar\2.0`` on
190
199
Windows. (You can check the location for your system by using
191
200
``bzr version``.)
313
322
    create_signatures = always
314
323
    check_signatures  = always
315
324
 
316
 
    [http://bazaar-vcs.org/bzr/*]
 
325
    [http://example.com/bzr/*]
317
326
    check_signatures  = require
318
327
 
319
328
The authentication configuration file, authentication.conf
495
504
    whether the format deprecation warning is shown on repositories that are
496
505
    using deprecated formats.
497
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
 
498
524
 
499
525
Branch type specific options
500
526
----------------------------