What will `* text=auto eol=lf` in gitattributes do?
问题 We have this in our .gitattributes file: * text=auto eol=lf I'd like to precisely understand what this does. The first part is text=auto . From the documentation: This ensures that all files that Git considers to be text will have normalized (LF) line endings in the repository. The important part is that Git does the normalization only for files that it detects as text files. However, I'm not sure about the eol=lf part. I would think that it will also do the normalization only for text files