我将core.autocrlf设置为true。我想把它改成假。在Git Bash中我跑了
<section class="my-header">
<header class="site-header">
...
</header>
</section>
但.my-header {
background: none #0099CC;
}
.site-header {
max-width: 1040px;
/* It already has margins left and right set to "auto" */
}
仍显示git config --global core.autocrlf false
。
我已经重新尝试重新启动Git Bash并在一个空目录中运行,即不是回购,但似乎没有任何改变它。有什么想法吗?
答案 0 :(得分:4)
使用git 2.8之后的版本,您只需使用:
git config --list --show-origin
您将看到哪个配置设置在哪里。
这应该允许您检查core.autocrlf全局设置是否被特定于存储库的设置覆盖,并且可以解释为什么看起来该设置似乎被忽略。