how to remove current changes in git code example
Example 1: how to remove file changes in git
git clean -df
git checkout -- .
Example 2: git discard unstaged files
git stash save --keep-index --include-untracked
Example 3: how to undo git clean -fd command
git clean -fdxn
Example 4: remove changes file git command
git checkout -- <file>