reset last commit keep changes 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: reset last commit without losing changes
git reset HEAD~1 --soft
Example 3: revert last commit
git reset HEAD~