diff options
author | CraftyOldMiner <85420839+CraftyOldMiner@users.noreply.github.com> | 2022-03-13 08:15:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-13 14:15:37 +0100 |
commit | 0ef9d7e01ec6696444af53176ab955e0cb0701b0 (patch) | |
tree | 07a1bcbbb3ab626d3d60c7b17bdf0341b61c08de /.gitattributes | |
parent | 73fad7064fb47d9d79ccdb3bab5988df1b9eea6f (diff) | |
download | NotEnoughUpdates-0ef9d7e01ec6696444af53176ab955e0cb0701b0.tar.gz NotEnoughUpdates-0ef9d7e01ec6696444af53176ab955e0cb0701b0.tar.bz2 NotEnoughUpdates-0ef9d7e01ec6696444af53176ab955e0cb0701b0.zip |
Add .gitattributes, normalize exiting line endings (#91)
Diffstat (limited to '.gitattributes')
-rw-r--r-- | .gitattributes | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..c51f397d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,14 @@ +* text=auto + +# Always Unix-style line endings +*.sh text eol=lf + +# Always Windows-style line endings +*.bat text eol=crlf +*.cmd text eol=crlf + +# Always binary +*.jpg -text +*.ogg -text +*.png -text +*.xcf -text |