aboutsummaryrefslogtreecommitdiffstats
path: root/admin/notes/bugtracker
diff options
context:
space:
mode:
Diffstat (limited to 'admin/notes/bugtracker')
-rw-r--r--admin/notes/bugtracker39
1 files changed, 32 insertions, 7 deletions
diff --git a/admin/notes/bugtracker b/admin/notes/bugtracker
index 5936eead85a..ca71214cdcc 100644
--- a/admin/notes/bugtracker
+++ b/admin/notes/bugtracker
@@ -449,16 +449,41 @@ http://lists.gnu.org/archive/html/emacs-devel/2009-11/msg00440.html
449 449
450** Bazaar stuff 450** Bazaar stuff
451 451
452*** You can use `bzr commit --fixes emacs:123' to mark that a commit fixes 452*** You can use `bzr commit --fixes debbugs:123' to mark that a commit fixes
453Emacs bug 123. You will first need to add a line to your bazaar.conf: 453Emacs bug 123. You will first need to add a line to one of your
454configuration files, ~/.bazaar/bazaar.conf or ~/.bazaar/locations.conf:
454 455
455bugtracker_emacs_url = http://debbugs.gnu.org/{id} 456bugtracker_debbugs_url = http://debbugs.gnu.org/{id}
457
458Here "{id}" is a literal string, a placeholder that will be replaced
459by the bug number you specify after `--fixes debbugs:' in the bzr
460command line (123 in the example above).
461
462In the bazaar.conf file, this setting should go into the [DEFAULTS]
463section.
464
465In the locations.conf file, it should go into the branch-specific
466configuration section for the branch where you want this to be in
467effect. For example, if you want this to be in effect for the branch
468located at `/home/projects/emacs/trunk', you need to have this in your
469~/.bazaar/locations.conf file:
470
471[/home/projects/emacs/trunk]
472bugtracker_debbugs_url = http://debbugs.gnu.org/{id}
473
474If you want to use this in all Emacs branches whose common parent is
475`/home/projects/emacs', put the setting in the [/home/projects/emacs]
476section. See "bzr help configuration" for more information about
477the *.conf files, their location and formats. See "bzr help bugs" for
478more information about the bugtracker_debbugs_url setting.
479
480See also log-edit-rewrite-fixes in .dir-locals.el.
456 481
457Note that all this does is add some metadata to the commit, it doesn't 482Note that all this does is add some metadata to the commit, it doesn't
458actually mark the bug as closed in the tracker. There seems to be no 483actually mark the bug as closed in the tracker. You can see this
459way to see this "metadata" with `bzr log', which is rather poor, but 484information with `bzr log', and it will show up as a link in a recent
460it will show up as a link in a recent loggerhead installation, or with 485loggerhead installation, or with some of the graphical frontends to
461some of the graphical frontends to bzr log. 486`bzr log'.
462 487
463** Gnus-specific voodoo 488** Gnus-specific voodoo
464 489