# Removes latest commit from the stash, KEEPS changes git reset --soft HEAD~ # Removes latest commit from the stash, DELETES changes git reset --hard HEAD~
# Remove ALL commits up to commit hash. # NB: Make sure these commits have not been pushed. git reset --hard