~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/configuration.txt

  • Committer: Martin Pool
  • Date: 2007-04-24 05:02:04 UTC
  • mfrom: (2449 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2450.
  • Revision ID: mbp@sourcefrog.net-20070424050204-bfkc1qiq0axt5f14
Merge trunk & fix NEWS conflict

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
    The gnupg signature for revisions must be present and must be valid.
140
140
 
141
141
ignore
142
 
    Do not check gnupg signatures of revisions. 
 
142
    Do not check gnupg signatures of revisions.
143
143
 
144
144
check-available
145
145
    (default) If gnupg signatures for revisions are present, check them.
171
171
 
172
172
false
173
173
    This section only applies to the branch at this directory and not
174
 
    branches below it. 
 
174
    branches below it.
175
175
 
176
176
gpg_signing_command
177
177
-------------------
215
215
-----
216
216
If set to "True", the branch should act as a checkout, and push each commit to
217
217
the bound_location.  This option is normally set by ``bind``/``unbind``.
 
218
 
 
219
 
 
220
Bug Tracker Options
 
221
===================
 
222
 
 
223
These options can go into bazaar.conf, branch.conf or into a branch-specific
 
224
configuration section in locations.conf.
 
225
 
 
226
bugzilla_<tracker_abbreviation>_url
 
227
-----------------------------------
 
228
If present, the location of the Bugzilla bug tracker referred to by
 
229
<tracker_abbreviation>. This option can then be used together with ``bzr commit
 
230
--fixes`` to mark bugs in that tracker as being fixed by that commit. For
 
231
example::
 
232
 
 
233
    bugzilla_squid_url = http://www.squid-cache.org/bugs
 
234
 
 
235
would allow ``bzr commit --fixes squid:1234`` to mark Squid's bug 1234 as
 
236
fixed.
 
237
 
 
238
trac_<tracker_abbrevation>_url
 
239
------------------------------
 
240
If present, the location of the Trac instance referred to by
 
241
<tracker_abbreviation>. This option can then be used together with ``bzr commit
 
242
--fixes`` to mark bugs in that tracker as being fixed by that commit. For
 
243
example::
 
244
 
 
245
    trac_twisted_url = http://www.twistedmatrix.com/trac
 
246
 
 
247
would allow ``bzr commit --fixes twisted:1234`` to mark Twisted's bug 1234 as
 
248
fixed.