git checkout -- file_name |
This will update the file file_name in working directory. It'll be from your local repository. Effectively, revert whatever you've done to the file.
git checkout HEAD -- dir_full_path |
This will update the dir dir_full_path to the commit version in HEAD. (typically the last commit.) Replace HEAD by a commit hash to revert to other version.
# revert file to last commit
git checkout HEAD -- file_name
# revert file to the commit before last commit
git checkout HEAD^ -- file_name
|
git clean -d -x -f
|