git stash commits 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: reset last commit without losing changes
git reset HEAD~1 --soft