~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2011-08-12 09:49:24 UTC
  • mfrom: (6015.9.10 2.4)
  • mto: This revision was merged to the branch mainline in revision 6066.
  • Revision ID: v.ladeuil+lp@free.fr-20110812094924-knc5s0g7vs31a2f1
Merge 2.4 into trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
427
422
OS buffers to physical disk.  This is somewhat slower, but means data
428
423
should not be lost if the machine crashes.  See also repository.fdatasync.
429
424
 
 
425
gpg_signing_key
 
426
~~~~~~~~~~~
 
427
 
 
428
The GnuPG user identity to use when signing commits.  Can be an e-mail
 
429
address, key fingerprint or full key ID.  When unset or when set to
 
430
"default" Bazaar will use the user e-mail set with ``whoami``.
 
431
 
430
432
recurse
431
433
~~~~~~~
432
434
 
448
450
 
449
451
    gpg_signing_command = /usr/bin/gnpg
450
452
 
 
453
The specified command must accept the options "--clearsign" and "-u <email>".
 
454
 
451
455
bzr_remote_path
452
456
~~~~~~~~~~~~~~~
453
457