~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jonathan Riddell
  • Date: 2011-07-12 14:30:06 UTC
  • mfrom: (6023 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6024.
  • Revision ID: jriddell@canonical.com-20110712143006-bx2m5wr62yew0ks6
mergeĀ inĀ 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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
420
415
committed revisions only when the branch requires them.  ``never`` will refuse
421
416
to sign newly committed revisions, even if the branch requires signatures.
422
417
 
 
418
gpg_signing_key
 
419
~~~~~~~~~~~
 
420
 
 
421
The GnuPG user identity to use when signing commits.  Can be an e-mail
 
422
address, key fingerprint or full key ID.  When unset or when set to
 
423
"default" Bazaar will use the user e-mail set with ``whoami``.
 
424
 
423
425
recurse
424
426
~~~~~~~
425
427
 
441
443
 
442
444
    gpg_signing_command = /usr/bin/gnpg
443
445
 
 
446
The specified command must accept the options "--clearsign" and "-u <email>".
 
447
 
444
448
bzr_remote_path
445
449
~~~~~~~~~~~~~~~
446
450