git undo commit before push code example

Example 1: git undo commit

# Uncommit the changes
git reset --soft HEAD~1

# Completely delete the changes
git reset --hard HEAD~1

Example 2: 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 3: undo commit git before push

git reset HEAD~

Example 4: undo git commit after push

git reset <hash> # Run this then merge, commit, and push