git revert 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: git undo commit keep changes
#windows
git reset --soft HEAD~1
Example 3: git reset keep changes
git reset HEAD^ --soft
Example 4: undo git commit and keep changes
git reset HEAD^
git reset
Example 5: git revert commit but keep changes
git reset HEAD^
Example 6: git undo last commit
git reset --soft HEAD~1