git undo all changes code example
Example 1: git undo all changes
git reset --hard
Example 2: how to remove file changes in git
git clean -df
git checkout -- .
Example 3: git reset one file
git checkout HEAD -- my-file.txt
Example 4: git discard staged changes
git reset HEAD
git checkout .