From 72875ff529952355876cae94ba8603f174378bee Mon Sep 17 00:00:00 2001 From: Sameeh Jubran Date: Thu, 8 Sep 2016 16:01:18 +0300 Subject: [PATCH] Add .gitattributes and introduce end-of-line normalization This patch sets text=auto in the .gitattributes file and which ensures that line endings are normalized. Moreover all of the files that are currently use DOS line endings will remain this way. As of this patch any new file that will be added to this repository should use UNIX line endings. Signed-off-by: Dmitry Fleytman Signed-off-by: Sameeh Jubran Acked-by: Frediano Ziglio --- .gitattributes | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8320442 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,16 @@ +* -text=auto + +#These files have CRLF line endings, git shouldn't attempt to change that. +qxldod[[:space:]]Package/qxldod[[:space:]]Package.vcxproj -text +qxldod[[:space:]]Package/qxldod[[:space:]]Package.vcxproj.filters -text +qxldod.sln -text +qxldod/BaseObject.cpp -text +qxldod/BaseObject.h -text +qxldod/QxlDod.cpp -text +qxldod/QxlDod.h -text +qxldod/buildAll.bat -text +qxldod/clean.bat -text +qxldod/driver.cpp -text +qxldod/driver.h -text +qxldod/qxldod.vcxproj -text +qxldod/resource.h -text