From 7e203efce89cddf1644f5f2a65ab75df60fff00f Mon Sep 17 00:00:00 2001 From: Craig Mayhew Date: Mon, 17 Aug 2020 21:28:12 +0100 Subject: [PATCH] Enforce linux style line endings to support WSL (#1073) * Enforce linux style line endings to support WSL If you clone in windows, but run under WSL, the line endings cause errors. This enforces linux style line endings. * Update .gitattributes to use text=auto Co-authored-by: bjorn3 Co-authored-by: bjorn3 --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000000..6313b56c578 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf