reset staged changes code example
Example 1: how to remove file changes in git
git clean -df
git checkout -- .
Example 2: undo unstaged changes git
git checkout -- .
Example 3: git discard staged changes
git reset HEAD
git checkout .
git clean -df
git checkout -- .
git checkout -- .
git reset HEAD
git checkout .