|
Contributor
How to become a contributor and submit patchesSubmitting Patches
Using upload.py and the code review siteIn most cases running $ python upload.py will Do The Right Thing without any additional input. See the upload.py documentation for more help. Make sure to send the review to joe.gregorio@gmail.com and CC httlib2-dev@googlegroups.com. There is also an article here on how to go through the code review process. Once the code review has started you may be asked to make changes to your code. Once you have made those changes run upload.py again to update the patch. You will need to know the codereview issue number. Assuming it is 123456 you would run: $ python upload.py -i 123456 ReviewingIf you are doing a review the easiest way to work with patches is mercurial queues. If we assume the codereview issue is again 123456, in the upper right-hand corner of the code review page is a "Download raw patch set" link, which is the URL of the patchset to import: $ hg qimport http://codereview.appspot.com/download/issue123456_10000.diff You can then hg qpush the patch into your repository and when you are done hq qpop it back out again. Once the patch is in good shape you can hg qfinish it to commit it to the repository. |