-
Notifications
You must be signed in to change notification settings - Fork 5
How to contribute (for contributors)
Abdelhadi Naimi edited this page Nov 8, 2018
·
6 revisions
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.
- cd to your project folder
- Update your local files with
git pull origin master
- Do your work or fix something
-
git checkout -b <branch-name>
create a local branch -
git add .
thengit commit -m "<your message>"
to stage a change. If you want to close an issue your message must containfixes #id
, with the id of the issue - 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.