You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by Apache Wiki <wi...@apache.org> on 2014/02/28 19:02:21 UTC

[Cassandra Wiki] Update of "HowToContribute" by TylerHobbs

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.

The "HowToContribute" page has been changed by TylerHobbs:
https://wiki.apache.org/cassandra/HowToContribute?action=diff&rev1=50&rev2=51

Comment:
Fix git instructions for creating a patch

    * Make sure all tests pass by running "ant test" in the project directory.
    * For testing multi-node behavior, https://github.com/pcmanus/ccm is useful
   1. When you're happy with the result create a patch:
-   * git add <any new file>
+   * git add <any new or modified file>
-   * git diff > branchname-issue.txt (e.g. trunk-123.txt, cassandra-0.6-123.txt)
+   * git diff --cached > branchname-issue.txt (e.g. trunk-123.txt, cassandra-0.6-123.txt)
   1. Attach the newly generated patch to the issue and click "Submit patch" in the left side of the JIRA page
   1. Wait for other developers or committers to review it and hopefully +1 the ticket
   1. Wait for a committer to commit it.