- Clone the repo to local disk
git clone /path/to/this/repo
cd /path/to/this/repo- Create a new branch
git checkout -b dev_your_branch- Set up a development environment
pip install -e ".[dev]"- Check code before commit
make commit
make style && make quality
# make test- Submit changes
git add .
git commit -m "commit message"
git fetch origin
git rebase origin/master
git push -u origin dev_your_branch- Create a merge request from your branch
dev_your_branch