默认情况下windows上的git客户端,在文件名仅发生大小写改变时不会识别,提交后发现,gitlab上的文件名不会发生变化。
解决方法:
编辑 .git 中的config文件, 将 ignorecase 改为 false 即可。
如果项目已经创建,重置项目重新提交:
git rm -r --cache .
git add .
git commit -m "gitignore working"
git push origin master
原文链接:https://www.f2er.com/git/415228.html