如何强制 core.ignorecase 为 false
how to force core.ignorecase to false
我已经使用命令 git config --global core.ignorecase false
,但每次我使用命令 git init
创建新的 git 存储库或 git clone http://xxx
下载远程存储库时,core.ignorecase
仍然是 true
,我是不是错过了一些配置?谢谢!
OS:Windows10
基本上可以通过设置签出项目的模板来完成。
此处解释了如何操作的所有信息。
git clone --template ...
Specify the directory from which templates will be used
The default template directory includes some directory structure, suggested "exclude patterns".
所以你可以将你的 .gitignore 放在这个文件夹中,它将用于你的项目。
我已经使用命令 git config --global core.ignorecase false
,但每次我使用命令 git init
创建新的 git 存储库或 git clone http://xxx
下载远程存储库时,core.ignorecase
仍然是 true
,我是不是错过了一些配置?谢谢!
OS:Windows10
基本上可以通过设置签出项目的模板来完成。
此处解释了如何操作的所有信息。
git clone --template ...
Specify the directory from which templates will be used
The default template directory includes some directory structure, suggested "exclude patterns".
所以你可以将你的 .gitignore 放在这个文件夹中,它将用于你的项目。