-
Fork repo and clone
-
Make sure you have
git-flow
installed and initialized your repo usinggit flow init
-
Create features, bugfixes, etc.
git flow feature start awesome-feature
-
Install dependencies
poetry install
-
Initialize your repo with a pre-commit
pre-commit install
-
Commit and publish your branch to the remote repository
git flow feature publish awesome-feature
-
Create a pull request.