$ git checkout docs\splash.png
Updated 1 path from the index
Encountered 1 file(s) that should have been pointers, but weren't:
docs/splash.png
如上所示,git repo 里面的图片文件 ,被人全放到 lfs 里面去了。结果今天发现,有些文件出了点问题。比如:
splash.png 文件,我明明没有修改,却变成了“修改状态。然后我 checkout 也不行,怎么都不处理不了。google 了半天,也搞不定。
大家有碰到过这样的情况么?怎么解决的?
p.s. 难道只能把本地的 git repo 删除了,重新 git clone 下来?
1
yazoox OP I resolved the issue by running the following commands. (p.s. my system is windows 10)
``` git rm .gitattributes git reset --hard HEAD ``` |