Skip to content

Contributing

Max McKenzie edited this page Apr 19, 2016 · 2 revisions

If you find a bug in the source code or a mistake in the documentation, you can help us by submitting an issue to our GitHub Repository. Even better you can submit a Pull Request with a fix.

MAKE SURE YOU READ THE STYLE GUIDE!! before writing any documentation.

Code Style

There is a lot of deviations from these styles as the docs where needed quick, so feel free to re-write some code if it starts to get to you.

Create a pull request with git checkout -b my-branch master then push to the branch git push origin my-branch

If the pull request gets too outdated we may ask you to rebase and force push to update the pull request:

git rebase master -i
git push origin my-branch -f
Clone this wiki locally