git remove commit not pushed 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: cancel a commit not pushed

git reset --soft HEAD~

Example 3: delete a pushed commit

# delete the last commit
$git reset –hard HEAD~

Example 4: git how to undo a pushed commit

git revert <commit_hash>

Example 5: delete a pushed commit

$git log --pretty=oneline --abbrev-commit