Return-Path: Delivered-To: apmail-lucene-java-commits-archive@www.apache.org Received: (qmail 48817 invoked from network); 11 Jun 2008 14:30:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Jun 2008 14:30:55 -0000 Received: (qmail 56445 invoked by uid 500); 11 Jun 2008 14:30:58 -0000 Delivered-To: apmail-lucene-java-commits-archive@lucene.apache.org Received: (qmail 56358 invoked by uid 500); 11 Jun 2008 14:30:57 -0000 Mailing-List: contact java-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-commits@lucene.apache.org Received: (qmail 56349 invoked by uid 99); 11 Jun 2008 14:30:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jun 2008 07:30:57 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jun 2008 14:30:15 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 7797ED2EB for ; Wed, 11 Jun 2008 14:30:33 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: java-commits@lucene.apache.org Date: Wed, 11 Jun 2008 14:30:33 -0000 Message-ID: <20080611143033.12107.19749@eos.apache.org> Subject: [Lucene-java Wiki] Update of "HowToContribute" by GrantIngersoll X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Lucene-java Wiki" for change notification. The following page has been changed by GrantIngersoll: http://wiki.apache.org/lucene-java/HowToContribute The comment on the change is: copy over patch naming convention stuff from Solr wiki ------------------------------------------------------------------------------ In order to create a patch, just type: {{{ - svn diff > myBeautifulPatch.patch + svn diff > LUCENE-NNN.patch }}} - This will report all modifications done on Lucene sources on your local disk and save them into the ''myBeautifulPatch.patch'' file. Read the patch file. + This will report all modifications done on Lucene sources on your local disk and save them into the ''LUCENE-NNN.patch'' file. Read the patch file. Make sure it includes ONLY the modifications required to fix a single issue. + + Note the ''LUCENE-NNN.patch'' patch file name. Please use this naming pattern when creating patches for uploading to JIRA. Once you create a new JIRA issue, note its name and use that name when naming your patch file. For example, if you are creating a patch for a JIRA issue named LUCENE-123, then name your patch filename LUCENE-123.patch. If you are creating a new version of an existing patch, use the existing patch's file name. JIRA will automatically "gray out" the old patch and clearly mark your newly uploaded patch as the latest. Please do not: * reformat code unrelated to the bug being fixed: formatting changes should be separate patches/commits.