git undo changes to untracked files code example
Example 1: git remove untracked files
git clean -fdx
Example 2: git discard local changes
# Discarding local changes (permanently) to a file:
git checkout -- <file>
# Discard all local changes to all files permanently:
git reset --hard
Example 3: how to remove file changes in git
git clean -df
git checkout -- .
Example 4: how to remove untracked files in git
git clean -n