- Use
state-apply-test.sh
- Use
state-apply-server.sh
The dev
branch is updated normally through PRs.
The test
branch is updated through pulling the latest changes from dev
:
git checkout -b update-test origin/test
git merge origin/dev
- Push changes to personal fork and make a PR on GitHub
The prod
branch is updated through pulling the latest changes from test
. This should only be done when the changes in test have been tested fully:
git checkout -b update-prod origin/prod
git merge origin/test
- Push changes to personal fork and make a PR on GitHub