Git Workflow
This skill describes Michael Vorburger's preferred Git workflow across his projects:
Pre-Commit Testing
- Before creating a commit, always ensure the project passes its tests.
- Refer to the
testingskill to determine how to run tests for the current repository.
Automagic Push
- After successfully completing a
git commit, always automatically rungit pushto push the changes to the remote repository.
Source: vorburger/aifiles — distributed by TomeVault.