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: delete a pushed commit

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

Example 5: remove commit not pushed

git reset --hard origin/main