EN
git push branch with force to override remote changes
4
points
Quick solution:
git push origin --force
or
git push force
or
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.