aboutsummaryrefslogtreecommitdiffstats
path: root/admin/notes/bugtracker
diff options
context:
space:
mode:
authorStefan Monnier2010-11-17 22:54:14 -0500
committerStefan Monnier2010-11-17 22:54:14 -0500
commit4a47c2757309e338321da1e7a2f6d399a306ce7d (patch)
treede441bac2c90c3302459c5f0ffe9c53ec4b31c2f /admin/notes/bugtracker
parent8bbb7dd8a6d08540a81a7a2baa2274d8e6d65c92 (diff)
parentb916cbefa481920a49eac03c7025693f38afc882 (diff)
downloademacs-4a47c2757309e338321da1e7a2f6d399a306ce7d.tar.gz
emacs-4a47c2757309e338321da1e7a2f6d399a306ce7d.zip
Merge from emacs-23
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 9c7631fdfae..902067011b0 100644
--- a/admin/notes/bugtracker
+++ b/admin/notes/bugtracker
@@ -474,16 +474,41 @@ http://lists.gnu.org/archive/html/emacs-devel/2009-11/msg00440.html
474 474
475** Bazaar stuff 475** Bazaar stuff
476 476
477*** You can use `bzr commit --fixes emacs:123' to mark that a commit fixes 477*** You can use `bzr commit --fixes debbugs:123' to mark that a commit fixes
478Emacs bug 123. You will first need to add a line to your bazaar.conf: 478Emacs bug 123. You will first need to add a line to your ~/bazaar.conf
479or ~/locations.conf:
479 480
480bugtracker_emacs_url = http://debbugs.gnu.org/{id} 481bugtracker_debbugs_url = http://debbugs.gnu.org/{id}
482
483Here "{id}" is a literal string, a placeholder that will be replaced
484by the bug number you specify after `--fixes debbugs:' in the bzr
485command line (123 in the example above).
486
487In the bazaar.conf file, this setting should go into the [DEFAULTS]
488section.
489
490In the locations.conf file, it should go into the branch-specific
491configuration section for the branch where you want this to be in
492effect. For example, if you want this to be in effect for the branch
493located at `/home/projects/emacs/trunk', you need to have this in your
494~/locations.conf file:
495
496[/home/projects/emacs/trunk]
497bugtracker_debbugs_url = http://debbugs.gnu.org/{id}
498
499If you want to use this in all Emacs branches whose common parent is
500`/home/projects/emacs', put the setting in the [/home/projects/emacs]
501section. See "bzr help configuration" for more information about
502the *.conf files, their location and formats. See "bzr help bugs" for
503more information about the bugtracker_debbugs_url setting.
504
505See also log-edit-rewrite-fixes in .dir-locals.el.
481 506
482Note that all this does is add some metadata to the commit, it doesn't 507Note that all this does is add some metadata to the commit, it doesn't
483actually mark the bug as closed in the tracker. There seems to be no 508actually mark the bug as closed in the tracker. You can see this
484way to see this "metadata" with `bzr log', which is rather poor, but 509information with `bzr log', and it will show up as a link in a recent
485it will show up as a link in a recent loggerhead installation, or with 510loggerhead installation, or with some of the graphical frontends to
486some of the graphical frontends to bzr log. 511`bzr log'.
487 512
488** Gnus-specific voodoo 513** Gnus-specific voodoo
489 514