4 Commits

Author SHA1 Message Date
bmw
553b3162e7 Merge pull request #2136 from tboegi/gitattributes_eol_overrideses_auto
.gitattributes: EOL=LF overrides auto
2016-06-16 14:29:39 -07:00
Brad Warren
e826de5db7 Don't change line endings on a tarball 2016-06-06 14:52:30 -07:00
Torsten Bögershausen
b7c00a889a .gitattributes: EOL=LF overrides auto
The line
* text=auto eol=lf
in .gitattributes does not work as expected:
setting eol=lf overrides text=auto, and works as
* eol=lf
or
* text eol=lf

This is not what is intended, as binary files like *.gz go through
a CRLF -> LF conversion at commit time.

Use
* crlf=auto
instead (which is even understood by older Git versions, which are still in use)
2016-01-10 18:31:49 +01:00
Thom Wiggers
e9a2180d16 Add gitattributes file to mark bat file as CRLF
Gitattributes files can be used to mark files as crlf, which is useful for the `.bat` files in case people use eol=lf in their git config.
2015-10-27 22:53:20 +01:00