~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2008-09-05 02:29:34 UTC
  • mto: (3697.7.4 1.7)
  • mto: This revision was merged to the branch mainline in revision 3748.
  • Revision ID: john@arbash-meinel.com-20080905022934-s8692mbwpkdwi106
Cleanups to the algorithm documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Configuration Settings
2
2
=======================
3
3
 
 
4
.. TODO: Should have some explanation of why you'd want things in
 
5
.. branch.conf.
 
6
 
 
7
 
4
8
Environment settings
5
9
---------------------
6
10
 
174
178
The main configuration file, bazaar.conf
175
179
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
176
180
 
177
 
``bazaar.conf`` allows two sections: ``[DEFAULT]`` and ``[ALIASES]``.
178
 
The default section contains the default
 
181
``bazaar.conf`` only allows one
 
182
section called ``[DEFAULT]``. This default section contains the default
179
183
configuration options for all branches. The default section can be
180
184
overriden by providing a branch-specific section in ``locations.conf``.
181
185
 
224
228
Common variable options
225
229
-----------------------
226
230
 
227
 
debug_flags
228
 
~~~~~~~~~~~
229
 
 
230
 
A comma-separated list of debugging options to turn on.  The same values
231
 
can be used as with the -D command-line option (see `help global-options`).
232
 
For example::
233
 
 
234
 
    debug_flags = hpss
235
 
 
236
231
email
237
232
~~~~~
238
233
 
249
244
``BZR_EDITOR``, and overrides the ``VISUAL`` and ``EDITOR`` environment
250
245
variables.
251
246
 
252
 
log_format
253
 
~~~~~~~~~~
254
 
 
255
 
The default log format to use. Standard log formats are ``long``, ``short``
256
 
and ``line``. Additional formats may be provided by plugins. The default
257
 
value is ``long``.
258
 
 
259
247
check_signatures
260
248
~~~~~~~~~~~~~~~~
261
249
 
345
333
 
346
334
Supported values for specific clients:
347
335
 
348
 
:claws: Use Claws.  This skips a dialog for attaching files.
349
336
:evolution: Use Evolution.
350
337
:kmail: Use KMail.
351
338
:mutt: Use Mutt.
404
391
If present, the location of the default branch for push.  This option
405
392
is normally set by ``push --remember``.
406
393
 
407
 
push_strict
408
 
~~~~~~~~~~~
409
 
 
410
 
If present, defines the ``--strict`` option default value for checking
411
 
uncommitted changes before pushing.
412
 
 
413
394
bound_location
414
395
~~~~~~~~~~~~~~
415
396
 
421
402
 
422
403
If set to "True", the branch should act as a checkout, and push each commit to
423
404
the bound_location.  This option is normally set by ``bind``/``unbind``.
424
 
 
425
 
send_strict
426
 
~~~~~~~~~~~
427
 
 
428
 
If present, defines the ``--strict`` option default value for checking
429
 
uncommitted changes before sending a merge directive.
430