i lose my local changes gitlab code example
Example 1: how to remove file changes in git
git clean -df
git checkout -- .
Example 2: git reset one file
git checkout HEAD -- my-file.txt
git clean -df
git checkout -- .
git checkout HEAD -- my-file.txt