- Checkout the latest master:
git checkout master
git pull
- Branch off of master:
# example: jenny-tru/54 or jenny-tru/quick-fix-for-thing
git checkout -b <USERNAME>/<ISSUE>
-
Make your changes!
-
Run tests:
pytest
# To see print() output:
pytest -s
- Commit your changes, through the VS Code UI or:
git commit -a -m "Your commit message here"
- Push to origin, through the VS Code UI or:
git push origin head