~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/configuration.txt

  • Committer: John Arbash Meinel
  • Date: 2005-11-23 15:44:24 UTC
  • mto: (1185.50.19 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1512.
  • Revision ID: john@arbash-meinel.com-20051123154424-a02f8bf990a1fed5
Renamed all of the tests from selftest/foo.py to tests/test_foo.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
====================
2
 
Bazaar configuration
3
 
====================
4
 
 
5
 
Information on how to configure Bazaar.
6
 
 
7
 
 
8
 
.. TODO: Should have some explanation of why you'd want things in
9
 
.. branch.conf.
10
 
 
11
 
Location of configuration file
12
 
==============================
13
 
Each user gets a pair of configurations files in ``$HOME/.bazaar``. The first
14
 
one, named ``bazaar.conf``, includes default configuration options. The other
15
 
file, ``locations.conf``, contains configuration information for specific
16
 
branch locations.  These files are sometimes referred to as ``ini files``.
17
 
 
18
 
General Format
19
 
==============
20
 
An ini file has three types of contructs: section headers, section
21
 
variables and comments.
22
 
 
23
 
Comments
24
 
--------
25
 
A comment is any line that starts with a "#" (sometimes called a "hash
26
 
mark", "pound sign" or "number sign"). Comment lines are ignored by
27
 
Bazaar when parsing ini files.
28
 
 
29
 
Section Headers
30
 
---------------
31
 
A section header is a word enclosed in brackets that starts at the begining
32
 
of a line.  A typical section header looks like this::
33
 
 
34
 
    [DEFAULT]
35
 
 
36
 
The only valid section header for bazaar.conf is [DEFAULT], which is
37
 
case sensitive. The default section provides for setting variables
38
 
which can be overridden with the branch config file.
39
 
 
40
 
For ``locations.conf``, the variables from the section with the
41
 
longest matching section header are used to the exclusion of other
42
 
potentially valid section headers. A section header uses the path for
43
 
the branch as the section header. Some examples include::
44
 
 
45
 
    [http://mybranches.isp.com/~jdoe/branchdir]
46
 
    [/home/jdoe/branches/]
47
 
 
48
 
 
49
 
 
50
 
Section Variables
51
 
-----------------
52
 
 
53
 
A section variable resides within a section. A section variable contains a
54
 
variable name, an equals sign and a value.  For example::
55
 
 
56
 
    email            = John Doe <jdoe@isp.com>
57
 
    check_signatures = require
58
 
 
59
 
 
60
 
Variable Policies
61
 
-----------------
62
 
 
63
 
Variables defined in a section affect the named directory or URL plus
64
 
any locations they contain.  Policies can be used to change how a
65
 
variable value is interpreted for contained locations.  Currently
66
 
there are three policies available:
67
 
 
68
 
 none:
69
 
   the value is interpreted the same for contained locations.  This is
70
 
   the default behaviour.
71
 
 norecurse:
72
 
   the value is only used for the exact location specified by the
73
 
   section name.
74
 
 appendpath:
75
 
   for contained locations, any additional path components are
76
 
   appended to the value.
77
 
 
78
 
Policies are specified by keys with names of the form "$var:policy".
79
 
For example, to define the push location for a tree of branches, the
80
 
following could be used::
81
 
 
82
 
  [/top/location]
83
 
  push_location = sftp://example.com/location
84
 
  push_location:policy = appendpath
85
 
 
86
 
With this configuration, the push location for ``/top/location/branch1``
87
 
would be ``sftp://example.com/location/branch1``.
88
 
 
89
 
 
90
 
The main configuration file, bazaar.conf
91
 
----------------------------------------
92
 
 
93
 
The main configuration file, ``$HOME/.bazaar/bazaar.conf``, only allows one
94
 
section called ``[DEFAULT]``. This default section contains the default
95
 
configuration options for all branches. The default section can be
96
 
overriden by providing a branch-specific section in ``locations.conf``.
97
 
 
98
 
A typical ``bazaar.conf`` section often looks like the following::
99
 
 
100
 
    [DEFAULT]
101
 
    email             = John Doe <jdoe@isp.com>
102
 
    editor            = /usr/bin/vim
103
 
    check_signatures  = check-available
104
 
    create_signatures = when-required
105
 
 
106
 
``$HOME/.bazaar/locations.conf`` allows one to specify overriding settings for a
107
 
specific branch. The format is almost identical to the default section in
108
 
bazaar.conf with one significant change: The section header, instead of
109
 
saying default, will be the path to a branch that you wish to override a
110
 
value for. The '?' and '*' wildcards are supported::
111
 
 
112
 
    [/home/jdoe/branches/nethack]
113
 
    email = Nethack Admin <nethack@nethack.com>
114
 
 
115
 
    [http://hypothetical.site.com/branches/devel-branch]
116
 
    create_signatures = always
117
 
    check_signatures  = always
118
 
 
119
 
    [http://bazaar-vcs.org/bzr/*]
120
 
    check_signatures  = require
121
 
 
122
 
Common Variable Options
123
 
=======================
124
 
 
125
 
email
126
 
-----
127
 
The email address to use when committing a branch. Typically takes the form
128
 
of::
129
 
 
130
 
    email = Full Name <account@hostname.tld>
131
 
 
132
 
editor
133
 
------
134
 
The path of the editor that you wish to use if *bzr commit* is run without
135
 
a commit log message. This setting is trumped by the environment variable
136
 
``$BZR_EDITOR``, and overrides ``$VISUAL`` and ``$EDITOR``.
137
 
 
138
 
check_signatures
139
 
----------------
140
 
Defines the behavior for signatures.
141
 
 
142
 
require
143
 
    The gnupg signature for revisions must be present and must be valid.
144
 
 
145
 
ignore
146
 
    Do not check gnupg signatures of revisions.
147
 
 
148
 
check-available
149
 
    (default) If gnupg signatures for revisions are present, check them.
150
 
    Bazaar will fail if it finds a bad signature, but will not fail if
151
 
    no signature is present.
152
 
 
153
 
create_signatures
154
 
-----------------
155
 
Defines the behaviour of signing revisions.
156
 
 
157
 
always
158
 
    Sign every new revision that is committed.
159
 
 
160
 
when-required
161
 
    (default) Sign newly committed revisions only when the branch requires
162
 
    signed revisions.
163
 
 
164
 
never
165
 
    Refuse to sign newly committed revisions, even if the branch
166
 
    requires signatures.
167
 
 
168
 
recurse
169
 
-------
170
 
Only useful in ``locations.conf``. Defines whether or not the
171
 
configuration for this section applies to subdirectories:
172
 
 
173
 
true
174
 
    (default) This section applies to subdirectories as well.
175
 
 
176
 
false
177
 
    This section only applies to the branch at this directory and not
178
 
    branches below it.
179
 
 
180
 
gpg_signing_command
181
 
-------------------
182
 
(Default: "gpg"). Which program should be used to sign and check revisions.
183
 
For example::
184
 
 
185
 
    gpg_signing_command = /usr/bin/gnpg
186
 
 
187
 
smtp_server
188
 
-----------
189
 
(Default: "localhost"). SMTP server to use when Bazaar needs to send
190
 
email, eg. with ``merge-directive --mail-to``, or the bzr-email plugin.
191
 
 
192
 
smtp_username, smtp_password
193
 
----------------------------
194
 
User and password to authenticate to the SMTP server. If smtp_username
195
 
is set, and smtp_password is not, Bazaar will prompt for a password.
196
 
 
197
 
 
198
 
Branch 6 Options
199
 
================
200
 
 
201
 
These options apply only to branches that use the "experimental-branch6"
202
 
format.  They are usually set in ``.bzr/branch/branch.conf`` automatically, but
203
 
may be manually set in ``locations.conf`` or ``bazaar.conf``.
204
 
 
205
 
append_revisions_only
206
 
---------------------
207
 
If set to "True" then revisions can only be appended to the log, not
208
 
removed.  A branch with this setting enabled can only pull from
209
 
another branch if the other branch's log is a longer version of its
210
 
own.  This is normally set by ``bzr init --append-revisions-only``.
211
 
 
212
 
parent_location
213
 
---------------
214
 
If present, the location of the default branch for pull or merge.
215
 
This option is normally set by ``pull --remember`` or ``merge
216
 
--remember``
217
 
 
218
 
push_location
219
 
-------------
220
 
If present, the location of the default branch for push.  This option
221
 
is normally set by ``push --remember``.
222
 
 
223
 
bound_location
224
 
--------------
225
 
The location that commits should go to when acting as a checkout.
226
 
This option is normally set by ``bind``.
227
 
 
228
 
bound
229
 
-----
230
 
If set to "True", the branch should act as a checkout, and push each commit to
231
 
the bound_location.  This option is normally set by ``bind``/``unbind``.
232
 
 
233
 
 
234
 
Bug Tracker Options
235
 
===================
236
 
 
237
 
These options can go into bazaar.conf, branch.conf or into a branch-specific
238
 
configuration section in locations.conf.
239
 
 
240
 
bugzilla_<tracker_abbreviation>_url
241
 
-----------------------------------
242
 
If present, the location of the Bugzilla bug tracker referred to by
243
 
<tracker_abbreviation>. This option can then be used together with ``bzr commit
244
 
--fixes`` to mark bugs in that tracker as being fixed by that commit. For
245
 
example::
246
 
 
247
 
    bugzilla_squid_url = http://www.squid-cache.org/bugs
248
 
 
249
 
would allow ``bzr commit --fixes squid:1234`` to mark Squid's bug 1234 as
250
 
fixed.
251
 
 
252
 
trac_<tracker_abbrevation>_url
253
 
------------------------------
254
 
If present, the location of the Trac instance referred to by
255
 
<tracker_abbreviation>. This option can then be used together with ``bzr commit
256
 
--fixes`` to mark bugs in that tracker as being fixed by that commit. For
257
 
example::
258
 
 
259
 
    trac_twisted_url = http://www.twistedmatrix.com/trac
260
 
 
261
 
would allow ``bzr commit --fixes twisted:1234`` to mark Twisted's bug 1234 as
262
 
fixed.