diff options
| author | Kenichi Handa | 2010-11-25 12:56:41 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-11-25 12:56:41 +0900 |
| commit | e957f9ae90f3cab1584c06877cbff075d52a6a9a (patch) | |
| tree | d19aea6f4c6a3e369604ab8bc97be6d419073b0c /admin/notes/bugtracker | |
| parent | b84ae584330c940010bc543fd925eddeb13fd9e2 (diff) | |
| parent | 33aeea0eb66921329fde41e14cfda2565c6bad6d (diff) | |
| download | emacs-e957f9ae90f3cab1584c06877cbff075d52a6a9a.tar.gz emacs-e957f9ae90f3cab1584c06877cbff075d52a6a9a.zip | |
merge emacs-23
Diffstat (limited to 'admin/notes/bugtracker')
| -rw-r--r-- | admin/notes/bugtracker | 39 |
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 |
| 453 | Emacs bug 123. You will first need to add a line to your bazaar.conf: | 453 | Emacs bug 123. You will first need to add a line to one of your |
| 454 | configuration files, ~/.bazaar/bazaar.conf or ~/.bazaar/locations.conf: | ||
| 454 | 455 | ||
| 455 | bugtracker_emacs_url = http://debbugs.gnu.org/{id} | 456 | bugtracker_debbugs_url = http://debbugs.gnu.org/{id} |
| 457 | |||
| 458 | Here "{id}" is a literal string, a placeholder that will be replaced | ||
| 459 | by the bug number you specify after `--fixes debbugs:' in the bzr | ||
| 460 | command line (123 in the example above). | ||
| 461 | |||
| 462 | In the bazaar.conf file, this setting should go into the [DEFAULTS] | ||
| 463 | section. | ||
| 464 | |||
| 465 | In the locations.conf file, it should go into the branch-specific | ||
| 466 | configuration section for the branch where you want this to be in | ||
| 467 | effect. For example, if you want this to be in effect for the branch | ||
| 468 | located at `/home/projects/emacs/trunk', you need to have this in your | ||
| 469 | ~/.bazaar/locations.conf file: | ||
| 470 | |||
| 471 | [/home/projects/emacs/trunk] | ||
| 472 | bugtracker_debbugs_url = http://debbugs.gnu.org/{id} | ||
| 473 | |||
| 474 | If 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] | ||
| 476 | section. See "bzr help configuration" for more information about | ||
| 477 | the *.conf files, their location and formats. See "bzr help bugs" for | ||
| 478 | more information about the bugtracker_debbugs_url setting. | ||
| 479 | |||
| 480 | See also log-edit-rewrite-fixes in .dir-locals.el. | ||
| 456 | 481 | ||
| 457 | Note that all this does is add some metadata to the commit, it doesn't | 482 | Note that all this does is add some metadata to the commit, it doesn't |
| 458 | actually mark the bug as closed in the tracker. There seems to be no | 483 | actually mark the bug as closed in the tracker. You can see this |
| 459 | way to see this "metadata" with `bzr log', which is rather poor, but | 484 | information with `bzr log', and it will show up as a link in a recent |
| 460 | it will show up as a link in a recent loggerhead installation, or with | 485 | loggerhead installation, or with some of the graphical frontends to |
| 461 | some of the graphical frontends to bzr log. | 486 | `bzr log'. |
| 462 | 487 | ||
| 463 | ** Gnus-specific voodoo | 488 | ** Gnus-specific voodoo |
| 464 | 489 | ||