how to remove all the changes in git code example
Example 1: git reset one file
git checkout HEAD -- my-file.txt
Example 2: git remove my local changes and pull from master
git reset --hard <your commit hash key>
Example 3: remove changes file git command
git checkout -- <file>