.gitattributes在Mac和Windows上无法正常工作

MaS*_*Sza 1 windows git macos end-of-line gitattributes

在我的项目中,我使用的操作系统不同,一台是Mac,第二台是Windows。当我使用git时,所有更改都显示为整个文档更改。原因是这两个OS的行尾不同。我阅读了此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
Run Code Online (Sandbox Code Playgroud)

我不知道为什么它不起作用,因为我之前曾尝试过对该文件进行很多配置。

小智 6

.gitattributes文件应与第一次提交一起添加。如果添加一些提交,则需要显式规范所有现有文件。

$ rm .git/index     # Remove the index to force Git to
$ git reset         # re-scan the working directory
$ git status        # Show files that will be normalized
$ git add -u
$ git commit -m "Introduce end-of-line normalization"
Run Code Online (Sandbox Code Playgroud)

参见https://git-scm.com/docs/gitattributes