how to undo git commit but keep changes code example
Example 1: git undo commit keep changes
#windows
git reset --soft HEAD~1
Example 2: undo last commit but keep changes
git reset @~
Example 3: git revert commit but keep changes
git reset HEAD^