Differences between revisions 5 and 7 (spanning 2 versions)
Revision 5 as of 2008-06-11 09:40:33
Size: 1307
Editor: DennisSchoen
Comment:
Revision 7 as of 2009-05-25 13:51:41
Size: 1318
Editor: abuehl
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
This extension adds a new command 'postreview' to post changesets for review to a [http://www.review-board.org/ Review Board] server. This extension adds a new command 'postreview' to post changesets for review to a [[http://www.review-board.org/|Review Board]] server.
Line 56: Line 56:
CategoryExtension CategoryExtensionsByOthers

Review Board

This extension is not distributed with Mercurial.

Author: Dennis Schön

Download site: http://freehg.org/u/roccoblues/mercurial-reviewboard/

Overview

This extension adds a new command 'postreview' to post changesets for review to a Review Board server.

Configuration

Configure your .hgrc to enable the extension by adding following lines:

[extensions]
reviewboard = /path/to/reviewboard

[reviewboard]
# REQUIRED ITEMS:
server          = http://reviewboard.example.com/

# OPTIONAL ITEMS:
# user            = ... # username for login
# target_groups   = ... # default review groups
# target_people   = ... # default review people

Usage

To post the tip changeset to the Review board server:

$ hg postreview tip
login to http://reviewboard.example.com
username: ...
password:
Repositories:
[1] Stuff
[2] miscrepo
repository id: 1
review request draft saved: http://reviewboard.example.com/r/366/

To update the review request ID 12 with the tip changeset:

$ hg postreview -r 12 tip
login to http://reviewboard.example.com
username: ...
password:
review request draft saved: http://reviewboard.example.com/r/12/


CategoryExtensionsByOthers

ReviewboardExtension (last edited 2013-08-31 15:56:12 by KevinBot)