~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/doc_generate/autodoc_rstx.py

  • Committer: Alexander Belchenko
  • Date: 2006-07-31 06:13:23 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060731061323-1ac4a03334df1ee0
generate_docs (man/rstx): fixed description of configuration file
(as John Meinel suggested)

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
 
217
217
**On Windows**: ``C:\\Documents and Settings\\username\\Application Data\\bazaar\\2.0\\bazaar.conf``
218
218
 
219
 
Contains the default user config. At least one section, ``[DEFAULT]`` is required.
220
 
A typical default config file may be similiar to::
221
 
 
222
 
    [DEFAULT]
223
 
    email=John Doe <jdoe@isp.com>
 
219
Contains the users default configuration. The section ``[DEFAULT]`` is
 
220
used to define general configuration that will be applied everywhere.
 
221
The section ``[ALIASES]`` can be used to create command aliases for
 
222
commonly used options.
 
223
 
 
224
A typical config file might look something like::
 
225
 
 
226
  [DEFAULT]
 
227
  email=John Doe <jdoe@isp.com>
 
228
 
 
229
  [ALIASES]
 
230
  commit = commit --strict
 
231
  log10 = log --short -r -10..-1
224
232
 
225
233
 
226
234
See also