~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Ferlito
  • Date: 2009-09-02 04:31:45 UTC
  • mto: (4665.7.1 serve-init)
  • mto: This revision was merged to the branch mainline in revision 4913.
  • Revision ID: johnf@inodes.org-20090902043145-gxdsfw03ilcwbyn5
Add a debian init script for bzr --serve

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
 
 
8
4
Environment settings
9
5
---------------------
10
6
 
178
174
The main configuration file, bazaar.conf
179
175
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
180
176
 
181
 
``bazaar.conf`` only allows one
182
 
section called ``[DEFAULT]``. This default section contains the default
 
177
``bazaar.conf`` allows two sections: ``[DEFAULT]`` and ``[ALIASES]``.
 
178
The default section contains the default
183
179
configuration options for all branches. The default section can be
184
180
overriden by providing a branch-specific section in ``locations.conf``.
185
181
 
228
224
Common variable options
229
225
-----------------------
230
226
 
 
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
 
231
236
email
232
237
~~~~~
233
238
 
244
249
``BZR_EDITOR``, and overrides the ``VISUAL`` and ``EDITOR`` environment
245
250
variables.
246
251
 
 
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
 
247
259
check_signatures
248
260
~~~~~~~~~~~~~~~~
249
261
 
333
345
 
334
346
Supported values for specific clients:
335
347
 
 
348
:claws: Use Claws.  This skips a dialog for attaching files.
336
349
:evolution: Use Evolution.
337
350
:kmail: Use KMail.
338
351
:mutt: Use Mutt.
391
404
If present, the location of the default branch for push.  This option
392
405
is normally set by ``push --remember``.
393
406
 
 
407
push_strict
 
408
~~~~~~~~~~~
 
409
 
 
410
If present, defines the ``--strict`` option default value for checking
 
411
uncommitted changes before pushing.
 
412
 
394
413
bound_location
395
414
~~~~~~~~~~~~~~
396
415
 
402
421
 
403
422
If set to "True", the branch should act as a checkout, and push each commit to
404
423
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