Differences between revisions 17 and 23 (spanning 6 versions)
Revision 17 as of 2014-05-23 18:40:35
Size: 2313
Comment:
Revision 23 as of 2014-05-29 20:24:39
Size: 2648
Editor: mpm
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
<<Include(A:style)>>
Line 55: Line 57:
 * you can get the patches files directly from http://review.octopoid.net/patches/<node>/raw.txt Appropriate hg alias would be:

  {{{
[alias]
getpatch=import --partial --obsolete http://review.octopoid.net/patches/$1/raw.txt
}}}
Line 58: Line 67:
hg import --obsolete babar.diff: hg import --partial --obsolete <patches>:
Line 60: Line 69:
Line 78: Line 88:
 * Various data collection [[http://review.octopoid.net/]]

{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.

1. Generic Fact

2. 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 an 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.

3. Accepters Review Checklist

Some people are blessed to accept patches and push them to a repo where Matt Mackall ultimatly pull 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://review.octopoid.net/patches/<node>/raw.txt Appropriate hg alias would be:

    • [alias]
      getpatch=import --partial --obsolete http://review.octopoid.net/patches/$1/raw.txt
  • 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

4. Review Tooling

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