From 96d276638ff1d8e3546e6de5c4d86246d1864e4c Mon Sep 17 00:00:00 2001 From: Gerad Munsch Date: Wed, 25 Jan 2023 10:16:36 -0600 Subject: [PATCH] added a basic .gitattributes file --- .gitattributes | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..61af757 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,32 @@ +# +# .gitattributes +# + +## GENERIC ## + +* text=auto + + +## SOURCE CODE ## + +*.c eol=lf diff=cpp +*.h eol=lf diff=cpp +*.cpp eol=lf diff=cpp +*.hpp eol=lf diff=cpp + + +## SCRIPTS ## + +*.sh eol=lf +*.py eol=lf diff=python +*.ld eol=lf +Makefile eol=lf +*.mk eol=lf +*.make eol=lf +*.makefile eol=lf + + +## TEXT & MARKUP ## + +*.txt eol=crlf +*.md eol=crlf diff=markdown