You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by bu...@apache.org on 2011/09/10 21:53:11 UTC

svn commit: r795555 - /websites/staging/libcloud/trunk/content/contributing.html

Author: buildbot
Date: Sat Sep 10 19:53:10 2011
New Revision: 795555

Log:
Staging update by buildbot

Modified:
    websites/staging/libcloud/trunk/content/contributing.html

Modified: websites/staging/libcloud/trunk/content/contributing.html
==============================================================================
--- websites/staging/libcloud/trunk/content/contributing.html (original)
+++ websites/staging/libcloud/trunk/content/contributing.html Sat Sep 10 19:53:10 2011
@@ -83,13 +83,13 @@
 <li>Start a discussion on the <a href="devinfo.html">mailing list</a> (this step is optional and only required if you want to implement big feature or a change)</li>
 <li>Open a new issue on the <a href="https://issues.apache.org/jira/browse/LIBCLOUD">bug tracker</a> (Jira)</li>
 <li>Fork libcloud <a href="https://github.com/apache/libcloud">github git repository</a>* and make your changes</li>
-<li>Create a new branch for your changes (e.g. git checkout -b jira_issue_id_change_name)</li>
+<li>Create a new branch for your changes (e.g. <code>git checkout -b jira_issue_id_change_name</code>)</li>
 <li>Make your changes</li>
-<li>Write tests for your modifications and make sure that all the tests still pass (python setup.py test)</li>
+<li>Write tests for your modifications and make sure that all the tests still pass. For more informations about running the tests refer to the <a href="Testing">/testing.html</a> page.</li>
 <li>Create a patch with your changes</li>
-<li>git (format-patch): git format-patch --stdout trunk &gt; patch_name.patch</li>
-<li>git (diff): git diff --no-prefix trunk your_branch &gt; patch_name.patch</li>
-<li>svn: svn diff &gt; patch_name.patch</li>
+<li>git (format-patch): <code>git format-patch --stdout trunk &gt; patch_name.patch</code></li>
+<li>git (diff): <code>git diff --no-prefix trunk your_branch &gt; patch_name.patch</code></li>
+<li>svn: <code>svn diff &gt; patch_name.patch</code></li>
 <li>Attach patch to the ticket you have created</li>
 <li>Wait for your patch to be reviewed and / or accepted</li>
 </ol>