/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/en/user-guide/configuring_bazaar.txt

  • Committer: Jelmer Vernooij
  • Date: 2017-07-23 22:06:41 UTC
  • mfrom: (6738 trunk)
  • mto: This revision was merged to the branch mainline in revision 6739.
  • Revision ID: jelmer@jelmer.uk-20170723220641-69eczax9bmv8d6kk
Merge trunk, address review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
Configuration files
60
60
-------------------
61
61
 
62
 
Configuration files are located in ``$HOME/.config/breezy`` on Unix and
 
62
Configuration files are located in ``$HOME/.bazaar`` on Unix and
63
63
``C:\Documents and Settings\<username>\Application Data\Breezy\2.0`` on
64
64
Windows. There are three primary configuration files in this location:
65
65
 
66
 
* ``breezy.conf`` describes default configuration options,
 
66
* ``bazaar.conf`` describes default configuration options,
67
67
 
68
68
* ``locations.conf`` describes configuration information for
69
69
  specific branch locations,
77
77
override one of the values for a branch with a setting that is specific to you,
78
78
then you can do so in ``locations.conf``.
79
79
 
80
 
Here is sample content of ``breezy.conf`` after setting an email address using
 
80
Here is sample content of ``bazaar.conf`` after setting an email address using
81
81
the ``whoami`` command::
82
82
 
83
83
  [DEFAULT]
107
107
 
108
108
  * the current ``branch.conf`` is searched next,
109
109
 
110
 
  * ``breezy.conf`` is searched next,
 
110
  * ``bazaar.conf`` is searched next,
111
111
 
112
112
  * finally, some options can have default values generally defined in the
113
113
    code itself and not displayed by ``brz config`` (see `Configuration
123
123
    parent_location = bzr+ssh://bazaar.launchpad.net/+branch/brz/
124
124
    nickname = config-modify
125
125
    push_location = bzr+ssh://bazaar.launchpad.net/~vila/brz/config-modify/
126
 
  breezy:
 
126
  bazaar:
127
127
    debug_flags = hpss,
128
128
 
129
129
Each configuration file is associated with a given scope whose name is
157
157
 
158
158
  brz config --all .*opt
159
159
 
160
 
  breezy:
 
160
  bazaar:
161
161
    [DEFAULT]
162
162
    opt = {other_opt}/subdir
163
163
    other_opt = root
176
176
 
177
177
Some commands and plugins provide custom processing on files matching
178
178
certain patterns. Per-user rule-based preferences are defined in
179
 
``BRZ_HOME/rules``.
 
179
``BZR_HOME/rules``.
180
180
 
181
181
For further information on how rules are searched and the detailed syntax of
182
182
the relevant files, see `Rules <../user-reference/index.html#rules>`_
194
194
"words" even if they contain whitespace, and backslash may be used to quote
195
195
quotation marks.  For example::
196
196
 
197
 
    BRZ_EDITOR="C:\Program Files\My Editor\myeditor.exe"
 
197
    BZR_EDITOR="C:\Program Files\My Editor\myeditor.exe"