git cancel commit after 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: undo git commit after push
git reset <hash> # Run this then merge, commit, and push
Example 3: remove commit not pushed
git reset --hard origin/main