git undo changes to file in a commit code example
Example 1: revert unstaged changes git
git checkout -- .
Example 2: git discard staged changes
git reset HEAD
git checkout .
git checkout -- .
git reset HEAD
git checkout .