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