命令:'git checkout -- filename'不起作用

gev0vcfq  于 2023-05-05  发布在  Git
关注(0)|答案(1)|浏览(185)

使用命令后:git checkout -- filename,git status仍然告诉我内容已经更改,我检查了那个文件,它在最后多了一行。

h6my8fg2

h6my8fg21#

首先检查git config core.autocrlf是否设置为truenative
这可能会触发自动EOL(行尾)转换。
git ls-files --eol -- filename还可以帮助检查是否应用了属性指令(如果存储库中有.gitattributes)。

相关问题