git publish code example
Example 1: git push origin master --force
git push origin --force
Example 2: git push to branch
# If its your first push
git push -u origin BRANCH
# Otherwise
git push origin BRANCH
Example 3: git push branch
git push -u origin <branch>