aboutsummaryrefslogtreecommitdiffstats
path: root/admin/notes/bugtracker
diff options
context:
space:
mode:
authorEli Zaretskii2010-11-12 10:37:27 +0200
committerEli Zaretskii2010-11-12 10:37:27 +0200
commit6173c5b551055d0903cd8682456cd598a0661c2b (patch)
tree3ba6b7de86333184fc11c16e2f18a1d81655ea69 /admin/notes/bugtracker
parent29f30ab772056269970223a358a9ccf0a4711999 (diff)
downloademacs-6173c5b551055d0903cd8682456cd598a0661c2b.tar.gz
emacs-6173c5b551055d0903cd8682456cd598a0661c2b.zip
Expand and clarify the description of bugtracker setting for bzr.
Diffstat (limited to 'admin/notes/bugtracker')
-rw-r--r--admin/notes/bugtracker25
1 files changed, 24 insertions, 1 deletions
diff --git a/admin/notes/bugtracker b/admin/notes/bugtracker
index e22a8e5947e..a44481ebedf 100644
--- a/admin/notes/bugtracker
+++ b/admin/notes/bugtracker
@@ -450,10 +450,33 @@ http://lists.gnu.org/archive/html/emacs-devel/2009-11/msg00440.html
450** Bazaar stuff 450** Bazaar stuff
451 451
452*** You can use `bzr commit --fixes debbugs: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 your ~/bazaar.conf
454or ~/locations.conf:
454 455
455bugtracker_debbugs_url = http://debbugs.gnu.org/{id} 456bugtracker_debbugs_url = http://debbugs.gnu.org/{id}
456 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~/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
457See also log-edit-rewrite-fixes in .dir-locals.el. 480See also log-edit-rewrite-fixes in .dir-locals.el.
458 481
459Note 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