~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Benoît Pierre
  • Date: 2009-11-02 22:24:29 UTC
  • mto: (4634.96.1 integration-2.0)
  • mto: This revision was merged to the branch mainline in revision 4798.
  • Revision ID: benoit.pierre@gmail.com-20091102222429-xqdyo6n8odh3xbbd
Small fix for handling of short option names in shellcomplete_on_options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
  "John Doe <jdoe@example.com>"
16
16
 
17
 
See also the ``email`` configuration option.
 
17
See also the ``email`` configuration value.
18
18
 
19
19
BZR_PROGRESS_BAR
20
20
~~~~~~~~~~~~~~~~
21
21
 
22
 
Override the progress display.  Possible values are "none" or "text".  If
23
 
the value is "none" then no progress bar is displayed.  The value "text" draws
24
 
the ordinary command line progress bar.
 
22
Override the progress display.  Possible values are "none", "dots", "tty"
25
23
 
26
24
BZR_SIGQUIT_PDB
27
25
~~~~~~~~~~~~~~~
54
52
 
55
53
Path to the Bazaar executable to use when using the bzr+ssh protocol.
56
54
 
57
 
See also the ``bzr_remote_path`` configuration option.
 
55
See also the ``bzr_remote_path`` configuration value.
58
56
 
59
57
BZR_EDITOR
60
58
~~~~~~~~~~
61
59
 
62
60
Path to the editor Bazaar should use for commit messages, etc.
63
61
 
64
 
BZR_LOG
65
 
~~~~~~~
66
 
 
67
 
Location of the Bazaar log file. You can check the current location by
68
 
running ``bzr version``.
69
 
 
70
 
The log file contains debug information that is useful for diagnosing or
71
 
reporting problems with Bazaar.
72
 
 
73
 
Setting this to ``NUL`` on Windows or ``/dev/null`` on other platforms
74
 
will disable logging.
75
 
 
76
 
 
77
62
BZR_PLUGIN_PATH
78
63
~~~~~~~~~~~~~~~
79
64
 
80
65
The path to the plugins directory that Bazaar should use.
81
 
If not set, Bazaar will search for plugins in:
82
 
 
83
 
* the user specific plugin directory (containing the ``user`` plugins),
84
 
 
85
 
* the bzrlib directory (containing the ``core`` plugins),
86
 
 
87
 
* the site specific plugin directory if applicable (containing
88
 
  the ``site`` plugins).
89
 
 
90
 
If ``BZR_PLUGIN_PATH`` is set in any fashion, it will change the
91
 
the way the plugin are searched. 
92
 
 
93
 
As for the ``PATH`` variables, if multiple directories are
94
 
specified in ``BZR_PLUGIN_PATH`` they should be separated by the
95
 
platform specific appropriate character (':' on Unix,
96
 
';' on windows)
97
 
 
98
 
By default if ``BZR_PLUGIN_PATH`` is set, it replaces searching
99
 
in ``user``.  However it will continue to search in ``core`` and
100
 
``site`` unless they are explicitly removed.
101
 
 
102
 
If you need to change the order or remove one of these
103
 
directories, you should use special values:
104
 
 
105
 
* ``-user``, ``-core``, ``-site`` will remove the corresponding
106
 
  path from the default values,
107
 
 
108
 
* ``+user``, ``+core``, ``+site`` will add the corresponding path
109
 
  before the remaining default values (and also remove it from
110
 
  the default values).
111
 
 
112
 
Note that the special values 'user', 'core' and 'site' should be
113
 
used literally, they will be substituted by the corresponding,
114
 
platform specific, values.
115
 
 
116
 
The examples below use ':' as the separator, windows users
117
 
should use ';'.
118
 
 
119
 
Overriding the default user plugin directory::
120
 
 
121
 
  BZR_PLUGIN_PATH='/path/to/my/other/plugins'
122
 
 
123
 
Disabling the site directory while retaining the user directory::
124
 
 
125
 
  BZR_PLUGIN_PATH='-site:+user'
126
 
 
127
 
Disabling all plugins (better achieved with --no-plugins)::
128
 
 
129
 
  BZR_PLUGIN_PATH='-user:-core:-site'
130
 
 
131
 
Overriding the default site plugin directory::
132
 
 
133
 
  BZR_PLUGIN_PATH='/path/to/my/site/plugins:-site':+user
134
 
 
135
 
BZR_DISABLE_PLUGINS
136
 
~~~~~~~~~~~~~~~~~~~
137
 
 
138
 
Under special circumstances (mostly when trying to diagnose a
139
 
bug), it's better to disable a plugin (or several) rather than
140
 
uninstalling them completely. Such plugins can be specified in
141
 
the ``BZR_DISABLE_PLUGINS`` environment variable.
142
 
 
143
 
In that case, ``bzr`` will stop loading the specified plugins and
144
 
will raise an import error if they are explicitly imported (by
145
 
another plugin that depends on them for example).
146
 
 
147
 
Disabling ``myplugin`` and ``yourplugin`` is achieved by::
148
 
 
149
 
  BZR_DISABLE_PLUGINS='myplugin:yourplugin'
150
 
 
151
 
BZR_PLUGINS_AT
152
 
~~~~~~~~~~~~~~
153
 
 
154
 
When adding a new feature or working on a bug in a plugin,
155
 
developers often need to use a specific version of a given
156
 
plugin. Since python requires that the directory containing the
157
 
code is named like the plugin itself this make it impossible to
158
 
use arbitrary directory names (using a two-level directory scheme
159
 
is inconvenient). ``BZR_PLUGINS_AT`` allows such directories even
160
 
if they don't appear in ``BZR_PLUGIN_PATH`` .
161
 
 
162
 
Plugins specified in this environment variable takes precedence
163
 
over the ones in ``BZR_PLUGIN_PATH``.
164
 
 
165
 
The variable specified a list of ``plugin_name@plugin path``,
166
 
``plugin_name`` being the name of the plugin as it appears in
167
 
python module paths, ``plugin_path`` being the path to the
168
 
directory containing the plugin code itself
169
 
(i.e. ``plugins/myplugin`` not ``plugins``).  Use ':' as the list
170
 
separator, use ';' on windows.
171
 
 
172
 
Example:
173
 
~~~~~~~~
174
 
 
175
 
Using a specific version of ``myplugin``:
176
 
``BZR_PLUGINS_AT='myplugin@/home/me/bugfixes/123456-myplugin``
177
66
 
178
67
BZRPATH
179
68
~~~~~~~
181
70
The path where Bazaar should look for shell plugin external commands.
182
71
 
183
72
 
184
 
http_proxy, https_proxy
185
 
~~~~~~~~~~~~~~~~~~~~~~~
186
 
 
187
 
Specifies the network proxy for outgoing connections, for example::
188
 
 
189
 
  http_proxy=http://proxy.example.com:3128/ 
190
 
  https_proxy=http://proxy.example.com:3128/
191
 
 
192
 
 
193
73
Configuration files
194
74
-------------------
195
75
 
196
76
Location
197
77
~~~~~~~~
198
78
 
199
 
Configuration files are located in ``$HOME/.bazaar`` on Unix and
 
79
Configuration files are located in ``$HOME/.bazaar`` on Linux/Unix and
200
80
``C:\Documents and Settings\<username>\Application Data\Bazaar\2.0`` on
201
81
Windows. (You can check the location for your system by using
202
82
``bzr version``.)
258
138
variable name, an equals sign and a value.  For example::
259
139
 
260
140
    email            = John Doe <jdoe@isp.com>
261
 
    gpg_signing_key  = Amy Pond <amy@example.com>
262
 
 
263
 
A variable can reference other variables **in the same configuration file** by
264
 
enclosing them in curly brackets::
265
 
 
266
 
    my_branch_name = feature_x
267
 
    my_server      = bzr+ssh://example.com
268
 
    push_location   = {my_server}/project/{my_branch_name}
 
141
    check_signatures = require
269
142
 
270
143
 
271
144
Variable policies
311
184
    [DEFAULT]
312
185
    email             = John Doe <jdoe@isp.com>
313
186
    editor            = /usr/bin/vim
 
187
    check_signatures  = check-available
314
188
    create_signatures = when-required
315
189
 
316
190
 
328
202
 
329
203
    [http://hypothetical.site.com/branches/devel-branch]
330
204
    create_signatures = always
 
205
    check_signatures  = always
 
206
 
 
207
    [http://bazaar-vcs.org/bzr/*]
 
208
    check_signatures  = require
331
209
 
332
210
The authentication configuration file, authentication.conf
333
211
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
340
218
variable policies which don't apply.
341
219
 
342
220
For more information on the possible uses of the authentication configuration
343
 
file see :doc:`authentication-help`.
 
221
file see `Authentication Settings`_.
344
222
 
345
223
 
346
224
Common variable options
355
233
 
356
234
    debug_flags = hpss
357
235
 
358
 
or::
359
 
 
360
 
    debug_flags = hpss,evil
361
 
 
362
236
email
363
237
~~~~~
364
238
 
385
259
check_signatures
386
260
~~~~~~~~~~~~~~~~
387
261
 
388
 
Reserved for future use.  These options will allow a policy for branches to
389
 
require signatures.
 
262
Defines the behavior for signatures.
390
263
 
391
264
require
392
265
    The gnupg signature for revisions must be present and must be valid.
402
275
create_signatures
403
276
~~~~~~~~~~~~~~~~~
404
277
 
405
 
Defines the behaviour of signing revisions on commits.  By default bzr will not
406
 
sign new commits.
 
278
Defines the behaviour of signing revisions.
407
279
 
408
280
always
409
 
    Sign every new revision that is committed.  If the signing fails then the
410
 
    commit will not be made.
 
281
    Sign every new revision that is committed.
411
282
 
412
283
when-required
413
 
    Reserved for future use.
 
284
    (default) Sign newly committed revisions only when the branch requires
 
285
    signed revisions.
414
286
 
415
287
never
416
 
    Reserved for future use.
417
 
 
418
 
In future it is planned that ``when-required`` will sign newly
419
 
committed revisions only when the branch requires them.  ``never`` will refuse
420
 
to sign newly committed revisions, even if the branch requires signatures.
421
 
 
422
 
dirstate.fdatasync
423
 
~~~~~~~~~~~~~~~~~~
424
 
 
425
 
If true (default), working tree metadata changes are flushed through the
426
 
OS buffers to physical disk.  This is somewhat slower, but means data
427
 
should not be lost if the machine crashes.  See also repository.fdatasync.
428
 
 
429
 
gpg_signing_key
430
 
~~~~~~~~~~~~~~~
431
 
 
432
 
The GnuPG user identity to use when signing commits.  Can be an e-mail
433
 
address, key fingerprint or full key ID.  When unset or when set to
434
 
"default" Bazaar will use the user e-mail set with ``whoami``.
 
288
    Refuse to sign newly committed revisions, even if the branch
 
289
    requires signatures.
435
290
 
436
291
recurse
437
292
~~~~~~~
454
309
 
455
310
    gpg_signing_command = /usr/bin/gnpg
456
311
 
457
 
The specified command must accept the options "--clearsign" and "-u <email>".
458
 
 
459
312
bzr_remote_path
460
313
~~~~~~~~~~~~~~~
461
314
 
482
335
These settings are only needed if the SMTP server requires authentication
483
336
to send mail.
484
337
 
485
 
locks.steal_dead
486
 
~~~~~~~~~~~~~~~~
487
 
 
488
 
If set to true, bzr will automatically break locks held by processes from
489
 
the same machine and user that are no longer alive.  Otherwise, it will
490
 
print a message and you can break the lock manually, if you are satisfied
491
 
the object is no longer in use.
492
 
 
493
338
mail_client
494
339
~~~~~~~~~~~
495
340
 
516
361
:mapi: Use your preferred e-mail client on Windows.
517
362
:xdg-email: Use xdg-email to run your preferred mail program
518
363
 
519
 
repository.fdatasync
520
 
~~~~~~~~~~~~~~~~~~~~
521
 
 
522
 
If true (default), repository changes are flushed through the OS buffers
523
 
to physical disk.  This is somewhat slower, but means data should not be
524
 
lost if the machine crashes.  See also dirstate.fdatasync.
525
 
 
526
364
submit_branch
527
365
~~~~~~~~~~~~~
528
366
 
536
374
A publically-accessible version of this branch (implying that this version is
537
375
not publically-accessible).  Used (and set) by ``bzr send``.
538
376
 
539
 
suppress_warnings
540
 
~~~~~~~~~~~~~~~~~
541
 
 
542
 
A list of strings, each string represent a warning that can be emitted by
543
 
bzr. Mentioning a warning in this list tells bzr to not emit it.
544
 
 
545
 
Valid values:
546
 
 
547
 
* ``format_deprecation``:
548
 
    whether the format deprecation warning is shown on repositories that are
549
 
    using deprecated formats.
550
 
 
551
 
default_format
552
 
~~~~~~~~~~~~~~
553
 
 
554
 
A format name for the default format used when creating branches.  See ``bzr
555
 
help formats`` for possible values.
556
 
 
557
 
 
558
 
Unicode options
559
 
---------------
560
 
 
561
 
output_encoding
562
 
~~~~~~~~~~~~~~~
563
 
 
564
 
A Python unicode encoding name for text output from bzr, such as log
565
 
information.  Values include: utf8, cp850, ascii, iso-8859-1.  The default
566
 
is the terminal encoding prefered by the operating system.
567
 
 
568
377
 
569
378
Branch type specific options
570
379
----------------------------
578
387
~~~~~~~~~~~~~~~~~~~~~
579
388
 
580
389
If set to "True" then revisions can only be appended to the log, not
581
 
removed.  A branch with this setting enabled can only pull from another
582
 
branch if the other branch's log is a longer version of its own.  This is
583
 
normally set by ``bzr init --append-revisions-only``. If you set it
584
 
manually, use either 'True' or 'False' (case-sensitive) to maintain
585
 
compatibility with previous bzr versions (older than 2.2).
 
390
removed.  A branch with this setting enabled can only pull from
 
391
another branch if the other branch's log is a longer version of its
 
392
own.  This is normally set by ``bzr init --append-revisions-only``.
586
393
 
587
394
parent_location
588
395
~~~~~~~~~~~~~~~
589
396
 
590
 
If present, the location of the default branch for pull or merge.  This option
591
 
is normally set when creating a branch, the first ``pull`` or by ``pull
 
397
If present, the location of the default branch for pull or merge.
 
398
This option is normally set by ``pull --remember`` or ``merge
592
399
--remember``.
593
400
 
594
401
push_location
595
402
~~~~~~~~~~~~~
596
403
 
597
404
If present, the location of the default branch for push.  This option
598
 
is normally set by the first ``push`` or ``push --remember``.
 
405
is normally set by ``push --remember``.
599
406
 
600
407
push_strict
601
408
~~~~~~~~~~~
603
410
If present, defines the ``--strict`` option default value for checking
604
411
uncommitted changes before pushing.
605
412
 
606
 
dpush_strict
607
 
~~~~~~~~~~~~
608
 
 
609
 
If present, defines the ``--strict`` option default value for checking
610
 
uncommitted changes before pushing into a different VCS without any
611
 
custom bzr metadata.
612
 
 
613
413
bound_location
614
414
~~~~~~~~~~~~~~
615
415
 
628
428
If present, defines the ``--strict`` option default value for checking
629
429
uncommitted changes before sending a merge directive.
630
430
 
631
 
 
632
 
External Merge Tools
633
 
--------------------
634
 
 
635
 
bzr.mergetool.<name>
636
 
~~~~~~~~~~~~~~~~~~~~
637
 
 
638
 
Defines an external merge tool called <name> with the given command-line.
639
 
Arguments containing spaces should be quoted using single or double quotes. The
640
 
executable may omit its path if it can be found on the PATH.
641
 
 
642
 
The following markers can be used in the command-line to substitute filenames
643
 
involved in the merge conflict::
644
 
 
645
 
  {base}      file.BASE
646
 
  {this}      file.THIS
647
 
  {other}     file.OTHER
648
 
  {result}    output file
649
 
  {this_temp} temp copy of file.THIS, used to overwrite output file if merge
650
 
              succeeds.
651
 
 
652
 
For example::
653
 
 
654
 
  bzr.mergetool.kdiff3 = kdiff3 {base} {this} {other} -o {result}
655
 
 
656
 
bzr.default_mergetool
657
 
~~~~~~~~~~~~~~~~~~~~~
658
 
 
659
 
Specifies which external merge tool (as defined above) should be selected by
660
 
default in tools such as ``bzr qconflicts``.
661
 
 
662
 
For example::
663
 
 
664
 
  bzr.default_mergetool = kdiff3