Jump to: navigation, search

Difference between revisions of "Solum/Contributing"

(Created page with "[https://github.com/stackforge/solum Solum StackForge Repo] The configuration of this repo requires that you have an How_To_Contribute#Contributors_License_Agreement|OpenSt...")
 
Line 1: Line 1:
[https://github.com/stackforge/solum Solum StackForge Repo]
+
The configuration of the [https://github.com/stackforge/solum Solum StackForge Repo] requires that you have an [[How_To_Contribute#Contributors_License_Agreement|OpenStack CLA]]. For information about how prepare for contribution, please consult the [[How_To_Contribute |How To Contribute]] wiki page.
 
 
The configuration of this repo requires that you have an [[How_To_Contribute#Contributors_License_Agreement|OpenStack CLA]]. For information about how to set up for contribution, please consult the [[How_To_Contribute |How To Contribute]] wiki page. You can clone the Solum repo using:
 
  
 
Be sure to read the [[Gerrit_Workflow|Gerrit Workflow]] wiki page for information about how to submit your commit for review so it can be merged into the Solum code base.
 
Be sure to read the [[Gerrit_Workflow|Gerrit Workflow]] wiki page for information about how to submit your commit for review so it can be merged into the Solum code base.

Revision as of 22:37, 31 October 2013

The configuration of the Solum StackForge Repo requires that you have an OpenStack CLA. For information about how prepare for contribution, please consult the How To Contribute wiki page.

Be sure to read the Gerrit Workflow wiki page for information about how to submit your commit for review so it can be merged into the Solum code base.

Quick Start:

 git config --global user.name "Firstname Lastname"
 git config --global user.email "your_email@youremail.com"

To check your git configuration:

 git config --list

On Ubuntu, MacOSx, or most other Unix-like systems, it is as simple as:

 pip install git-review

There are other options detailed in the Installation Instructions. You can now check out the Solum code and begin working on it:

 git clone git://git.openstack.org/stackforge/solum
 cd solum

.. add awesome code ..

 git add <list of files you added/changed>
 git commit [--amend] <list of files you added/changed>
 git review

Once you code is submitted for review, "Sign In" at https://review.openstack.org/ to track the review. Upon approval of the review your code will be automatically merged.