[DRAFT]
- fork
- clone fork
- start a new branch
git branch my-contrib - switch to the new branch
git checkout my-contrib - do changes
- commit&push
- create pull request
Before submitting a new pull request
- git fetch upstream
- git rebase upstream/master
OR
- git pull --rebase upstream master