git revert 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: git amend commit message after push
$ git commit --amend -m "New and correct message"
Example 3: cancel a commit not pushed
git reset --soft HEAD~
Example 4: undo commit git before push
git reset HEAD~