clear all local changes git code example
Example 1: remove local changes git
git fetch # will fetch the latest changes on the remote
git reset --hard origin/master # will set your local branch to match the representation of the remote just pulled down.
Example 2: how to remove file changes in git
git clean -df
git checkout -- .
Example 3: git reset one file
git checkout HEAD -- my-file.txt
Example 4: git discard unstaged files
git stash save --keep-index --include-untracked
Example 5: clear local changes in git
git checkout .