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 2012/01/12 01:58:21 UTC

[Cassandra Wiki] Update of "HowToContribute" by DaveBrosius

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 DaveBrosius:
http://wiki.apache.org/cassandra/HowToContribute?action=diff&rev1=41&rev2=42

Comment:
show new git repository instructions (and for now don't show github mirror as it's not mirroring)

   1. Check if someone else has already begun work on the change you have in mind in the [[https://issues.apache.org/jira/browse/CASSANDRA|issue tracker]]
   1. If not, create a ticket describing the change you're proposing in the issue tracker
   1. Check out the latest version of the source code
-   * svn checkout http://svn.apache.org/repos/asf/cassandra/trunk cassandra-trunk
+   * git clone http://git-wip-us.apache.org/repos/asf/cassandra.git cassandra-trunk
-    . or
-   * git clone git://git.apache.org/cassandra.git
   1. Modify the source to include the improvement/bugfix
    * Verify that you follow Cassandra's CodeStyle.
    * Verify that your change works by adding a unit test.
    * 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:
-   * svn add <any new file>
+   * git add <any new file>
-   * svn diff > branchname-issue.txt (e.g. trunk-123.txt, cassandra-0.6-123.txt)
+   * git diff > 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.