如果我在我的 repo 上运行“git status”,它会给出:
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: myfile
但是,如果我执行 'git diff myfile',它不会显示任何差异。这是因为我进行了更改并删除了它,所以它恢复到原来的状态了吗?
我应该运行“git checkout myfile”来清除它吗?