美文网首页
2021-08-04 git reset 不好用问题

2021-08-04 git reset 不好用问题

作者: 我是小胡胡123 | 来源:发表于2021-08-24 14:33 被阅读0次

在执行git reset --hard,还是显示两个文件本地有改动。

HEAD is now at 8c09d59b2 bumping build number
Encountered 2 file(s) that should have been pointers, but weren't:

解决方法:

git lfs uninstall
git reset --hard
git lfs install
git lfs pull

或者

git rm --cached -r .
git reset --hard
git rm .gitattributes
git reset .
git checkout .

用的第一种方法,解决了问题。

相关文章

网友评论

      本文标题:2021-08-04 git reset 不好用问题

      本文链接:https://www.haomeiwen.com/subject/eneuvltx.html