From bd75773bfec36c1317944aaa90d06f3443912da2 Mon Sep 17 00:00:00 2001 From: Bill Burton Date: Sun, 9 Apr 2017 14:41:52 -0400 Subject: [PATCH] Create .gitattributes to ensure proper cloning with Windows Git Address issue #141 so Git cloning under Windows preserves line endings of relevant scripts and files regardless of a user's local Git configuration so it's possible to provision a VM with Vagrant, install and run LibreTime in place without issue. --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..7dc0c8588 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +# Auto-detect text vs. binary files and ensure newlines are always LF for +# text files on check-out and check-in. +* text=auto eol=lf