根据这个问题,我知道 git 中的 core.autocrlf=true 会导致 CRLF 到 LF 翻译。
但是,当我输入: git config core.autocrlf
我看:假的
但是,当我暂存已在 repo 中的已修改文件时,我仍然会收到以下警告:
Warning: CRLF will be replaced by LF in File1.X.
The file will have its original line endings in your working directory.
我的猜测是该文件的 repo 副本已经设置为“autocrlf=true”。
问题: A. 如何查询文件或 git repo 是否已经强制 AutoCrlf?B. 如何将它 autocrlf 关闭?