how to checkout all the unstaged files in git and get back to the last commit code example
Example 1: undo unstaged changes git
git checkout -- .
Example 2: git reset one file
git checkout HEAD -- my-file.txt
git checkout -- .
git checkout HEAD -- my-file.txt