Git 仓库中文件名大小写问题

黄琦雲 at 
首先,Windows 下 git 默认配置是对文件/文件夹名称的大小写不敏感:git config --get core.ignorecase# true 这就导致了一些时候的难以预料问题的产生,针对这个配置,先引用一下官方帮助文档的原话:The default is false, except git-clone or git-init will probe and set core.ignoreCase true if appropriate when the repository is created.即 git 默认对大小写敏感,但是会在仓库克隆或初始化时,根据当前系统来设置是否忽略大……