在我的项目中,我使用具有不同操作系统的计算机,一个是 Mac,第二个是 Windows。当我使用 git 时,每个更改都显示为整个文档更改。原因是这两个操作系统的行尾不同。我阅读了此https://help.github.com/articles/dealing-with-line-endings/并.gitattributes
在根文件夹中创建了一个文件,但问题仍然存在。这是我的.gitattributes
文件:
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.css text
*.html text
*.js text
# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
我不知道为什么它不起作用,因为我之前尝试过这个文件的很多配置。