参考文章:
https://www.cnblogs.com/miracle77hp/articles/11163532.html
$ git status
git checkout --
$ git checkout -- music.mp3
$ git reset HEAD music.mp3
$ git reset --hard 3628164
1. git checkout -- file命令中的 -- 很重要,
2. 命令git checkout -- music.mp3意思就是,把music.mp3在工作区的修改全部撤销。
又回到了(git add . 时的状态)
一种是readme.txt自修改后还没有被放到暂存区,现在,撤销修改就回到和版本库一模一样的状态;一种是readme.txt已经添加到暂存区后,又作了修改,现在,撤销修改就回到添加到暂存区后的状态。总之,就是让这个文件回到最近一次git commit或git add时的状态。