From 5ec14f6cf2293eeb7f9b6e964e1dc1c0b3f4a5ad Mon Sep 17 00:00:00 2001
From: Martin Czygan <martin.czygan@gmail.com>
Date: Wed, 26 Nov 2014 18:25:38 +0100
Subject: [PATCH] End-of-line normalization.

From: https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html

> When a text file is normalized, its line endings are converted to LF in the repository.
  To control what line ending style is used in the working directory, use the eol attribute
  for a single file and the core.eol configuration variable for all text files.
---
 .gitattributes | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 .gitattributes

diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 00000000000..7d07d70cc8d
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=lf
-- 
GitLab