Thanks for being willing to contribute!
Some basic house-keeping for contributions please:
- Fork and review
- Commitizen commit messages
- Squash merge PRs to master
- Fork and clone the repo
$ yarn install
to install dependencies$ yarn start
to boot up the dev environment- Create a branch for your PR
- Create a Pull Request to upstream/master when you're ready to merge
Get the pattern:
git remote -v
git remote set upstream git@git...
Check it:
git remote -v
git checkout master
git fetch upstream
git pull upstream master
- Do "How to update Master on your fork"
git checkout feat/my-branch
git rebase upstream/master