Deploy
Rebase the deployment branch onto main and push to trigger the deployment pipeline.
Steps
- •Push
mainto origin - •Fetch latest from origin
- •Checkout
deploymentbranch - •Rebase onto
main - •Force push with lease
- •Switch back to
main
Command
bash
git push origin main && git fetch origin && git checkout deployment && git rebase main && git push --force-with-lease && git checkout main