how to reset git local changes code example
Example 1: how to remove file changes in git
git clean -df
git checkout -- .
Example 2: how to undo git clean -fd command
git clean -fdxn
git clean -df
git checkout -- .
git clean -fdxn