git branch undo last commit local and remote code example
Example 1: git remove las remotet commit
git reset HEAD^ # remove commit locally
git push origin +HEAD # force-push the new HEAD commit
Example 2: revert last push to server
git reset --hard HEAD@{1}
git push -f