how to undo commit changes in git code example
Example 1: git undo all changes
git reset --hard
Example 2: how to abandon changes and go last commit
#ignore all changes, and back to last commit
git add .
git stash
git reset --hard
#ignore all changes, and back to last commit
git add .
git stash