push local git to remote git code example
Example 1: git push origin
git branch -M main
then
git push -u origin main
or
git push -f origin main
or
git push origin master --force
Example 2: git remote push
git push <REMOTENAME> <BRANCHNAME>