Differences between revisions 27 and 29 (spanning 2 versions)
Revision 27 as of 2015-04-23 00:50:39
Size: 2694
Editor: DurhamGoode
Comment:
Revision 29 as of 2016-01-21 22:07:38
Size: 2697
Editor: lcharignon
Comment:
Deletions are marked like this. Additions are marked like this.
Line 30: Line 30:
   * Documentation augmented an updated    * Documentation augmented and updated
Line 47: Line 47:
Some people are blessed to accept patches and push them to a repo where Matt Mackall ultimatly pull from. Some people are blessed to accept patches and push them to a repo where Matt Mackall ultimately pulls from.

{i} This page does not meet our wiki style guidelines. Please help improve this page by cleaning up its formatting.

Patch Review Process

This page explains the Mercurial patch review process and how (anyone) can help.

Generic Fact

Simple Review Checklist

  • The patch should conform to the ContributingChanges bullet list.

    • Quick reminder of important things:
    • commit message format,
    • Patch does one and only one thing,
    • Change is tested
    • Documentation augmented and updated
    • (all the other things in the list)
  • You understand the change
  • The change seems correct
  • The change seems efficient

If any concerns raised, reply to the email asking questions.

If everything sounds good, reply to the email too. Just state it looks good to you.

Accepters Review Checklist

Some people are blessed to accept patches and push them to a repo where Matt Mackall ultimately pulls from.

Here is another check list for them

  • Run check code on all patches
  • Run the whole test suites
  • Reply to the list saying that you took care of the patch
  • you can get the patches files directly from http://hgpatches.durin42.com/patches/<node> Appropriate hg alias would be:

    • [alias]
      getpatch=import --partial --obsolete http://hgpatches.durin42.com/patches/$1
  • Make sure you created obsolescence marker between the node in the patch and the one you created, e.g.
    • hg import --partial --obsolete <patches>:
  • use the drophack extension if you need to drop a changeset you queued

  • Rebase your queue on top of main's @

  • Move @ with the changeset you pushed.

  • Update Patchwork once you have pushed

Review Tooling

ReviewProcess (last edited 2022-10-12 15:53:35 by AugieFackler)