Development Team/Code Review: Difference between revisions
Sascha silbe (talk | contribs) document new mailing list based process |
|||
| Line 16: | Line 16: | ||
== Preliminary discussion == | == Preliminary discussion == | ||
Except when the patch will be trivial, it's a good idea to | Except when the patch will be trivial, it's a good idea to discuss your idea and possible approaches on [[Mailing Lists#Developer Lists|sugar-devel]]. This avoids duplicated work and will give you an idea of what is considered a good idea by others (maintainers, [[Design Team]], etc.) before you commit substantial work in the patch itself. | ||
This is especially important if you're going to make large changes. You will probably be asked to split up your changes in reasonably small, but logically independent parts that can be reviewed somewhat independently. | |||
== Proposal == | == Proposal == | ||
* If your patch addresses | * If your patch addresses a bug which is not registered on the [https://bugs.sugarlabs.org/ bug tracker] yet, please open a new ticket for it. | ||
* | * Check your code follows the [[Development Team/Code guidelines|code guidelines]]. [[Development Team/Code guidelines#Tools|Automated style checkers]] can be quite helpful. | ||
* | * Reflect on and explain what your patch does by coming up with a patch description (see [[Activity Team/Git Introduction#Commit message guidelines|commit message guidelines]]). | ||
* Send your patch to [[Mailing Lists#Developer Lists|sugar-devel]] (see [[#Patch submission|below]] for details). | |||
* Add a testcase in a ticket comment. You need to mark it with |TestCase|. This adds better readability and our script that pulls together the test cases for each release is able to find it as well. For example: | * Add a testcase in a ticket comment. You need to mark it with |TestCase|. This adds better readability and our script that pulls together the test cases for each release is able to find it as well. For example: | ||
|TestCase| | |TestCase| | ||
| Line 34: | Line 32: | ||
Click on Browse, Read, Pippy icons in the homepage and make sure all of them starts correctly. | Click on Browse, Read, Pippy icons in the homepage and make sure all of them starts correctly. | ||
== Patch submission == | |||
We follow the [http://www.kernel.org/doc/Documentation/SubmittingPatches Linux patch submission process] for the most part. Some points specific to Sugar Labs are: | |||
* the affected module (e.g. sugar-toolkit) should be mentioned in the subject prefix | |||
* all patches get sent to [[Mailing Lists#Developer Lists|sugar-devel]] | |||
* you need to clearly note all new dependencies in the patch description (see also [[#Dependencies|below]]) | |||
If you have revised your patch, addressing review comments, please: | |||
* add a version number to the subject prefix (e.g. <code>git send-email --subject-prefix="PATCH v2 sugar"</code>) | |||
* mention your changes in a changelog below the marker line (the one with just <code>---</code> on it). E.g.: | |||
v1->v2: break up _recurse_dir into smaller functions | |||
Recommended git user configuration: | |||
* <code>git config --global diff.renames copies</code> | |||
* <code>git config --global sendemail.confirm always</code> | |||
* <code>git config --global 'url.gitorious@git.sugarlabs.org:.pushInsteadOf' git://git.sugarlabs.org/</code> | |||
Recommended per-repository git configuration, e.g. for sugar-datastore: | |||
* <code>cd ~/sugar-jhbuild/source/sugar-datastore</code> | |||
* <code>git config format.subjectprefix "PATCH sugar-datastore"</code> | |||
* <code>git config sendemail.to "sugar-devel <sugar-devel@lists.sugarlabs.org>"</code> | |||
Git configuration options that might come in handy: | |||
* <code>git config --global merge.conflictstyle diff3</code> | |||
* <code>git config --global alias.send-to-ml-single '!git send-email -s -p --stat'</code> | |||
* <code>git config --global alias.send-to-ml-series '!git send-email --cover-letter --summary --annotate -s -p --stat'</code> | |||
* <code>git config format.headers "Mail-Followup-To: <sugar-devel@lists.sugarlabs.org>"</code> | |||
* <code>git config sendemail.envelopesender sascha-ml-sugar-devel@dev.null</code> | |||
If you agree to publish your changes under the same license as the software you are changing, please add <code>-s</code> to the two aliases above (send-to-ml-single and send-to-ml-series). If you don't agree, don't post the patch! The reason this is mentioned as a separate step instead of adding it to the examples above is so you need to make a conscious decision and can't sue us for copyright infringement. | |||
== Discussion == | == Discussion == | ||
Maintainers and | Maintainers and other developers will review your patch as their time permits. Please allow for a few days, but feel free to "ping" (by either asking on [[IRC#irc.freenode.net_channels|#sugar]] or replying to your patch) if you haven't received any reply within a week. | ||
Everyone (including you!) is invited to review patches. Not only does this free up time of the maintainers (they can wait until someone else did a first round of review), but also ensures we make the best use of our collective knowledge (no, the maintainers are neither perfect nor omniscient ;) ). | |||
If a reviewer thinks your patch is good (and revelant) enough to be included in the upstream version of the software, (s)he will grant his or her Reviewed-By: tag (see the [http://www.kernel.org/doc/Documentation/SubmittingPatches Linux patch submission process] for details). | |||
After you addressed review comments, you can submit a new version of your patch (see [[#Patch submission|above]] for how to note what you changed). Please make it a reply to your original patch by using the <code>[http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html#_options --in-reply-to]</code> option to <code>git send-email</code>. E.g.: <code>git send-to-ml-single --in-reply-to=<1290857483.723474@twin.sascha.silbe.org></code> | |||
== Acceptance == | == Acceptance == | ||
After your patch has been acknowledged by a maintainer, (s)he will push your code to the repository, including any tags (Reviewed-By:, Tested-By:, etc.) your patch got. From now on your code is part of the Sugar code base and the community (which includes you ;) ) will maintain it for you. | |||
= Dependencies = | = Dependencies = | ||