Xfce Wiki

Sub domains
 

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
dev:howto:contribute [2013/02/02 13:39] – [Contribution Process] jannisdev:howto:contribute [2013/02/02 13:48] – [Contribution Process] jannis
Line 72: Line 72:
   ... auto-generated git log and diff stats ...   ... auto-generated git log and diff stats ...
  
-Fill out the SUBJECT and MESSAGE by briefly describing what you are submitting. Then save the file and close the editor. ''git send-email'' will send your patch set to the ''xfce4-dev@xfce.org'' mailing list in the form of the above cover letter email, followed by an additional email for each commit in your branch. These commit mails will each include the commit message and the commit diff as plain text.+Fill out the SUBJECT and MESSAGE by briefly describing what you are submitting. Then save the file and close the editor. ''git send-email'' will send your patch set to the ''xfce4-dev@xfce.org'' mailing list in the form of the above cover letter email, followed by an additional email for each commit in your branch. These mails will each include the commit message and the commit diff as plain text.
  
 === 5. Review === === 5. Review ===
 +
 +Once submitted to ''xfce4-dev@xfce.org'', your patches will be reviewed by other Xfce developers. These reviews should include:
 +
 +  * Testing the changes.
 +  * Comments on:
 +    * Coding style and bad code design
 +    * Potential issues
 +    * Possible side-effects
 +
 +The reviews will be sent as replies to your cover letter and patch emails. Thanks to having the patches included in your submission as plain text, they can be commented on in-line.
 +
 +Reviews may be performed in multiple rounds. If your submission is rejected, you are advised to rework your branch and re-submit it using the same approach as described above. 
  
 === 6. Merge === === 6. Merge ===
 +
 +Once you get an ok, one of the reviewers will pull your branch into the official repository and merge as follows:
 +
 +  git checkout master
 +  git merge --no-ff <your username>/<branch name>
 +  
 +This will result in an explicit merge commit, confirming in the git history that your changes have been merged.
 +
 +At the bottom of the merge commit message, the reviewer should add the following lines:
 +
 +  Signed-off-by: <your name> <your email>
 +  Reviewed-by: <reviewer 1> <reviewer 1 email>
 +  Reviewed-by: <reviewer 2> <reviewer 2 email>
 +  
 +These fields are defined in the [[http://www.kernel.org/doc/Documentation/SubmittingPatches|Linux kernel contribution guidelines]] and are used to confirm authorship and code reviews.