Git Change Branch de la branche à la principale

git checkout master        # to be sure you are on master branch
git push origin HEAD:main  # and then push the current branch (as master) to main
Crazy Crayfish