When the user says sync to main or synt to main, they mean:
- Fetch
origin/main. - Rebase the current branch on
origin/main. - Push the current HEAD directly to
mainwith a normal push, for example:git push origin HEAD:main
Do not force push for this workflow.