Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Voorhees <mrvoorhe@users.noreply.github.com>2017-03-06 13:04:09 +0300
committerMarek Safar <marek.safar@gmail.com>2017-03-06 13:04:09 +0300
commit12b81d4f73f9d391b27ebebc3fca69212349a067 (patch)
tree5b197c181f844332624f3a3496a9cb02cad6ea46 /.gitattributes
parent9401a4b0e2f831f4bb25d4966da4aa53315b9e21 (diff)
Fix crlf line endings that have crept in (#20)
* Add gitattributes file to set line endings to be lf * remove auto * Add back auto * Change crlf line endings in cs files to lf
Diffstat (limited to '.gitattributes')
-rw-r--r--.gitattributes8
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 000000000..e321b6694
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,8 @@
+# Autodetect text files
+* text=auto
+
+# Declare files that will always have LF line endings on checkout.
+*.cs text eol=lf
+*.csproj text eol=lf
+*.sln text eol=lf
+*.xml text eol=lf