-
Run
git fetch -- origin
. -
Create a new branch off of the
origin/main
branch. For example:git switch --create new-branch -- origin/main
-
Make changes, adding tests for any new code added.
-
Ensure that pre-commit is installed and that the pre-commit Git hook is installed for the repository. For example, if Homebrew is installed:
brew install -- pre-commit pre-commit install
-
Commit changes. The pre-commit Git hook will trigger and attempt to automatically flag and/or fix various issues. If some issues could not automatically be fixed, then manually fix them and commit the new changes.
-
Push your branch. For example:
git push --set-upstream -- origin new-branch
-
Open a PR with the new branch as the source branch and
main
as the target/base branch. -
After the PR is approved, merge your branch into the
main
branch.