The preferred way to contribute to jams is to fork the main repository on GitHub:
-
Fork the project repository: click on the 'Fork' button near the top of the page. This creates a copy of the code under your account on the GitHub server.
-
Clone this copy to your local disk:
$ git clone git@github.com:YourLogin/jams.git $ cd jams -
Create a branch to hold your changes:
$ git checkout -b my-featureand start making changes. Never work in the
masterbranch! -
Work on this copy on your computer using Git to do the version control. When you're done editing, do:
$ git add modified_files $ git committo record your changes in Git, then push them to GitHub with:
$ git push -u origin my-feature
Finally, go to the web page of the your fork of the jams repo, and click 'Pull request' to send your changes to the maintainers for review. This will send an email to the committers.
(If any of the above seems like magic to you, then look up the Git documentation on the web.)
This document was gleefully borrowed from scikit-learn.