Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 561 Bytes

File metadata and controls

40 lines (29 loc) · 561 Bytes

Contributing

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