Skip to content

How to contribute (for contributors)

Abdelhadi Naimi edited this page Nov 8, 2018 · 6 revisions

Welcome to Laboratory

If you want to contribute to the project, you will need to push your changes to a new branch, for this you need to :

firstly go to the issues tab and find something to do, and remember the issue id.

  1. cd to your project folder
  2. Update your local files with git pull origin master
  3. Do your work or fix something
  4. git checkout -b <branch-name> create a local branch
  5. git add . then git commit -m "<your message>" to stage a change. If you want to close an issue your message must contain fixes #id, with the id of the issue
  6. Push to the branch you just created with git push origin <branch-name>

After pushing go to Github and change into your branch and press the pull request button to send a pull request.

Clone this wiki locally