/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/bug_trackers.txt

  • Committer: Lukáš Lalinský
  • Date: 2007-11-27 18:47:53 UTC
  • mto: This revision was merged to the branch mainline in revision 3075.
  • Revision ID: lalinsky@gmail.com-20071127184753-e2m2b5lnb00x7nx2
Generic bug tracker configuration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
When you make a commit you can assiociate it with a bug by using the
14
14
``--fixes`` option of ``commit``. For example::
15
15
 
16
 
    $ bzr commit --fixes 12345 -m 'Properly close the connection on errors'
 
16
    $ bzr commit --fixes project:12345 -m "Properly close the connection"
17
17
 
18
18
This will set a revision property on the revision that is committed
19
19
which contains the URI at which more information on the bug can be found.
64
64
would allow ``bzr commit --fixes twisted:1234`` to mark Twisted's bug 1234 as
65
65
fixed.
66
66
 
 
67
bugtracker_<tracker_abbrevation>_url
 
68
------------------------------------
 
69
If present, the location of a generic bug tracker instance referred to by
 
70
<tracker_abbreviation>. The location must contain an ``{id}`` placeholder,
 
71
which will be replaced by a specific bug ID. This option can then be used
 
72
together with ``bzr commit --fixes`` to mark bugs in that tracker as being
 
73
fixed by that commit. For example::
 
74
 
 
75
    bugtracker_python_url = http://bugs.python.org/issue{id}
 
76
 
 
77
would allow ``bzr commit --fixes python:1234`` to mark bug 1234 in Python's
 
78
Roundup bug tracker as fixed, or::
 
79
 
 
80
    bugtracker_cpan_url = http://rt.cpan.org/Public/Bug/Display.html?id={id}
 
81
 
 
82
for CPAN's RT bug tracker.
 
83
 
67
84
Limitations of the system
68
85
=========================
69
86