~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2011-10-14 16:54:26 UTC
  • mfrom: (6216.1.1 remove-this-file)
  • Revision ID: pqm@pqm.ubuntu.com-20111014165426-tjix4e6idryf1r2z
(jelmer) Remove an accidentally committed .THIS file. (Jelmer Vernooij)

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 value.
 
17
See also the ``email`` configuration option.
18
18
 
19
19
BZR_PROGRESS_BAR
20
20
~~~~~~~~~~~~~~~~
54
54
 
55
55
Path to the Bazaar executable to use when using the bzr+ssh protocol.
56
56
 
57
 
See also the ``bzr_remote_path`` configuration value.
 
57
See also the ``bzr_remote_path`` configuration option.
58
58
 
59
59
BZR_EDITOR
60
60
~~~~~~~~~~
258
258
variable name, an equals sign and a value.  For example::
259
259
 
260
260
    email            = John Doe <jdoe@isp.com>
261
 
    check_signatures = require
 
261
    gpg_signing_key  = Amy Pond <amy@example.com>
262
262
 
263
263
A variable can reference other variables **in the same configuration file** by
264
264
enclosing them in curly brackets::
311
311
    [DEFAULT]
312
312
    email             = John Doe <jdoe@isp.com>
313
313
    editor            = /usr/bin/vim
314
 
    check_signatures  = check-available
315
314
    create_signatures = when-required
316
315
 
317
316
 
329
328
 
330
329
    [http://hypothetical.site.com/branches/devel-branch]
331
330
    create_signatures = always
332
 
    check_signatures  = always
333
 
 
334
 
    [http://example.com/bzr/*]
335
 
    check_signatures  = require
336
331
 
337
332
The authentication configuration file, authentication.conf
338
333
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
360
355
 
361
356
    debug_flags = hpss
362
357
 
 
358
or::
 
359
 
 
360
    debug_flags = hpss,evil
 
361
 
363
362
email
364
363
~~~~~
365
364
 
420
419
committed revisions only when the branch requires them.  ``never`` will refuse
421
420
to sign newly committed revisions, even if the branch requires signatures.
422
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``.
 
435
 
423
436
recurse
424
437
~~~~~~~
425
438
 
441
454
 
442
455
    gpg_signing_command = /usr/bin/gnpg
443
456
 
 
457
The specified command must accept the options "--clearsign" and "-u <email>".
 
458
 
444
459
bzr_remote_path
445
460
~~~~~~~~~~~~~~~
446
461
 
501
516
:mapi: Use your preferred e-mail client on Windows.
502
517
:xdg-email: Use xdg-email to run your preferred mail program
503
518
 
 
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
 
504
526
submit_branch
505
527
~~~~~~~~~~~~~
506
528
 
606
628
If present, defines the ``--strict`` option default value for checking
607
629
uncommitted changes before sending a merge directive.
608
630
 
 
631
add.maximum_file_size
 
632
~~~~~~~~~~~~~~~~~~~~~
 
633
 
 
634
Defines the maximum file size the command line "add" operation will allow
 
635
in recursive mode, with files larger than this value being skipped. You may 
 
636
specify this value as an integer (in which case it is interpreted as bytes), 
 
637
or you may specify the value using SI units, i.e. 10KB, 20MB, 1G. A value of 0 
 
638
will disable skipping.
609
639
 
610
640
External Merge Tools
611
641
--------------------