Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 502 Bytes

CONTRIBUTING.md

File metadata and controls

38 lines (26 loc) · 502 Bytes

Git Flow:

  1. Checkout the latest master:
git checkout master
git pull
  1. Branch off of master:
# example: jenny-tru/54 or jenny-tru/quick-fix-for-thing
git checkout -b <USERNAME>/<ISSUE>
  1. Make your changes!

  2. Run tests:

pytest
# To see print() output:
pytest -s
  1. Commit your changes, through the VS Code UI or:
git commit -a -m "Your commit message here"
  1. Push to origin, through the VS Code UI or:
git push origin head