Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.28 KB

CONTRIBUTING.md

File metadata and controls

39 lines (25 loc) · 1.28 KB

How to contribute

Thank you for considering to contribute to OpenAtlas and reading this document.

Feedback, reporting bugs and feature requests

Feedback is always appreciated and can be done by

Code contribution

We also welcome code contributions via GitHub pull requests to the develop branch after reading about our development standards.

Submitting changes via GitHub pull requests

Clone the repository and make a new branch from the develop branch.

git checkout develop
git checkout -b feature_example

Make changes, you can check these before committing with

git status
git diff --

Commit the changes and push it to your cloned repository on GitHub

git add .
git commit -m "A short message about the changes"
git push

Make a pull request from your new branch to the develop branch of OpenAtlas, see: GitHub pull request