From 9ad08e927ac78f42365ab68ed5e68cc55a5af946 Mon Sep 17 00:00:00 2001 From: Damien DUPORTAL Date: Wed, 15 Mar 2017 10:23:36 +0100 Subject: [PATCH] Ignoring files for git and docker + forcing Unix EOL to avoid unix confusion when building from Windows Signed-off-by: Damien DUPORTAL --- .dockerignore | 6 ++++++ .gitattributes | 2 ++ .gitignore | 1 + 3 files changed, 9 insertions(+) create mode 100644 .dockerignore create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..786bb91f --- /dev/null +++ b/.dockerignore @@ -0,0 +1,6 @@ +tests +README.md +.git +.gitignore +.gitattributes +.DS_Store diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..3ef7e827 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Force checkout as Unix endline style +text eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..e43b0f98 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store