当我们修改了文件名的大小写,git status 显示没有文件改动。
出现这种情况,首先看一下 git 的配置项是否忽略了文件问大小写:
$ git config core.ignorecase
如果是 true 表示 git 忽略大小写的修改,要让 git 不忽略文件名大小写的执行:
$ git config core.ignorecase false
Refer:core.ignorecase
Link:https://www.cnblogs.com/farwish/p/16610852.html
标签:status,core,git,文件名,Windows,ignorecase,大小写 From: https://www.cnblogs.com/farwish/p/16610852.html