aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-02-28 20:31:07 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-02-28 20:31:07 +0300
commitd928539a689ff757eaa06b33c3d4222e96f9ca57 (patch)
treed93dedb8614fc202b6b7184fb01614094e473feb
parent0a6b393e204d437763a443d3de5e146d3b5c6ea7 (diff)
Add .gitattributes file
-rw-r--r--.gitattributes20
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..42de5ef
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,20 @@
+# This is a good default: files that are auto-detected by git to be text are
+# converted to the platform-native line ending (LF on Unix, CRLF on Windows)
+# in the working tree and to LF in the repository.
+#
+* text=auto
+
+# Use `eol=crlf` for files that should have the CRLF line ending both in the
+# working tree (even on Unix) and in the repository.
+#
+#*.bat text eol=crlf
+
+# Use `eol=lf` for files that should have the LF line ending both in the
+# working tree (even on Windows) in the repository.
+#
+#*.sh text eol=lf
+
+# Use `binary` to make sure certain files are never auto-detected as text.
+#
+*.gz binary
+*.tar binary