EN
git push branch with force to override remote changes
4 points
Quick solution:
xxxxxxxxxx
1
git push origin --force
or
xxxxxxxxxx
1
git push force
or
xxxxxxxxxx
1
git push -f
-f is just shortcut from --force
This command will push local branch to remote repository and override remote branch with local changes.