git checkout remove changes code example
Example 1: git undo all changes
git reset --hard
Example 2: git delete changes
git clean -df
git checkout -- .
Example 3: revert unstaged changes git
git checkout -- path/to/file/to/revert
git reset --hard
git clean -df
git checkout -- .
git checkout -- path/to/file/to/revert