最近公司开始转用GitLab做代码存储, 在使用的过程中遇到以下问题:
- Clone一个代码库
- 不修改任何东西,直接在git bash里面
git status
, 发现有几个dll文件显示modified -
使用
Git checkout .
弹出以下提示1 2 3
Encountered 7 file(s) that should have been pointers, but weren't: ... ...
解决方法:
1
2
3
4
5
6
7
8
9
git rm --cached -r .
git reset --hard
git rm .gitattributes
git reset .
git checkout .