diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2017-08-23 17:21:56 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2017-08-23 17:30:00 (GMT) |
commit | d20485d8d983e1bc9de18289773168ddf2dafb6d (patch) | |
tree | 2bdf1760b751f8574689e85558188d24bb798f08 /.gitattributes | |
parent | b85c2589a1a22fb46620d7b0fd8aa6ec28ac5670 (diff) | |
download | CMake-d20485d8d983e1bc9de18289773168ddf2dafb6d.zip CMake-d20485d8d983e1bc9de18289773168ddf2dafb6d.tar.gz CMake-d20485d8d983e1bc9de18289773168ddf2dafb6d.tar.bz2 |
gitattributes: prefer `eol=lf` to `crlf=input`
The `crlf` attribute is deprecated in Git.
Diffstat (limited to '.gitattributes')
-rw-r--r-- | .gitattributes | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.gitattributes b/.gitattributes index 14aa49e..0943bca 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,11 +8,11 @@ # Do not perform whitespace checks. Do not format. [attr]generated whitespace=-tab-in-indent,-indent-with-non-tab -format.clang-format -bootstrap crlf=input -configure crlf=input -*.[1-9] crlf=input -*.sh crlf=input -*.sh.in crlf=input +bootstrap eol=lf +configure eol=lf +*.[1-9] eol=lf +*.sh eol=lf +*.sh.in eol=lf *.bat -crlf *.bat.in -crlf |