git how to cancel commit before push code example
Example 1: git remove commit before push
# Removes latest commit from the stash, KEEPS changes
git reset --soft HEAD~
# Removes latest commit from the stash, DELETES changes
git reset --hard HEAD~
Example 2: how to change a commit message after push
git commit --amend -m "New commit message"
Then
git push --force
and you're done
Example 3: git amend commit message after push
$ git commit --amend -m "New and correct message"