Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 617D910911 for ; Fri, 21 Mar 2014 02:42:31 +0000 (UTC) Received: (qmail 83130 invoked by uid 500); 21 Mar 2014 02:42:30 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 83087 invoked by uid 500); 21 Mar 2014 02:42:29 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 83075 invoked by uid 99); 21 Mar 2014 02:42:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Mar 2014 02:42:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Mar 2014 02:42:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3385E23889CB; Fri, 21 Mar 2014 02:42:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1579871 - /accumulo/site/trunk/content/git.mdtext Date: Fri, 21 Mar 2014 02:42:05 -0000 To: commits@accumulo.apache.org From: busbey@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140321024205.3385E23889CB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: busbey Date: Fri Mar 21 02:42:04 2014 New Revision: 1579871 URL: http://svn.apache.org/r1579871 Log: CMS commit to accumulo by busbey Modified: accumulo/site/trunk/content/git.mdtext Modified: accumulo/site/trunk/content/git.mdtext URL: http://svn.apache.org/viewvc/accumulo/site/trunk/content/git.mdtext?rev=1579871&r1=1579870&r2=1579871&view=diff ============================================================================== --- accumulo/site/trunk/content/git.mdtext (original) +++ accumulo/site/trunk/content/git.mdtext Fri Mar 21 02:42:04 2014 @@ -134,9 +134,9 @@ Jira issue ACCUMULO-12345 that affects 1 `git fetch && git fetch --tags` 4. For the given issue you intend to work on, choose the 'lowest' fixVersion - and create a branch for yourself to work in. + and create a branch for yourself to work in. This example is against fixVersion 1.5.2. - `git checkout -b ACCUMULO-12345-my-work origin/1.5.1-SNAPSHOT` + `git checkout -b ACCUMULO-12345-my-work origin/1.5.2-SNAPSHOT` 5. Make commits as you see fit as you fix the issue, referencing the issue name in the commit message: @@ -145,14 +145,14 @@ Jira issue ACCUMULO-12345 that affects 1 6. Assuming others are developing against the version you also are, as you work, or before you create your patch, rebase your branch against the remote - to lift your changes to the top of your branch. + to lift your changes to the top of your branch. The branch specified here should be the same one you used in step 4. - `git pull --rebase origin 1.5.1-SNAPSHOT` + `git pull --rebase origin 1.5.2-SNAPSHOT` 7. At this point, you can create a patch file from the upstream branch to - attach to the ACCUMULO-12345 Jira issue. + attach to the ACCUMULO-12345 Jira issue. The branch specified here should be teh same one you used in step 4. - `git format-patch 1.5.1-SNAPSHOT --stdout > ACCUMULO-12345.patch` + `git format-patch --stdout origin/1.5.2-SNAPSHOT > ACCUMULO-12345.patch` An alternative to creating a patch is submitting a request to pull your changes from some repository, e.g. Github. Please include the repository and branch