Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 1.15 KB

contrib.rst

File metadata and controls

30 lines (25 loc) · 1.15 KB

Contributing to EMBERS

There are many ways you can contribute to EMBERS.

  • Contributing documentation in the form of python doc, and documents like this.
  • Using EMBERS; reporting bugs and patches into the issue tracker.
  • Following up on current Issues by posting comments in the issue tracker and/or submitting pull requests.

Contributing Overview

Because we are using Github the process for contributing is as follows:

  1. Acquire a github account
  1. Fork amanchokshi/EMBERS repo
  1. Git clone our Fork to a local working copy on our own machine
  1. Create development branches in our own working copy.
  • git checkout -b Issue31
  1. Code by adding/modifying/deleting documentaton or code
  2. Commit
  • git commit -m "#31 Fix involved: blah blah blah"
  1. We push our fix branches to our Forked repo.
  • git push origin Issue31
  1. On Github we submit a pull request from this forked branch into amanchokshi/EMBERS's main repo.