Skip to content
Sergio Botero edited this page Dec 11, 2013 · 1 revision

To contribute, the well known 'fork and pull request' procedure will work great.

Suggested git workflow

The master branch is always stable. To develop new features you should use the development branch:

  • git pull from development
  • git checkout -b <the_new_feature>
  • Code the feature and try to add some tests
  • git checkout development && git pull <origin> development
  • git checkout <the_new_feature>
  • git rebase development (fix conflicts, if any)
  • Create a PR from your account
Clone this wiki locally