From cac7391247f700055fb8d3da795601932d114f6e Mon Sep 17 00:00:00 2001 From: Manlio Perillo Date: Mon, 24 Apr 2023 18:27:46 +0200 Subject: .gitattributes: remove support for old files, add python Remove support for old .h, .cpp and .bat files. Set eol mode to lf for Python scripts. Closes #252 --- .gitattributes | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to '.gitattributes') diff --git a/.gitattributes b/.gitattributes index 97386d9..cd420c4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4,13 +4,7 @@ # Default behavior, if core.autocrlf is unset. * text=auto -# Files to be converted to native line endings on checkout. -*.cpp text -*.h text - -# Text files to always have CRLF (dos) line endings on checkout. -*.bat text eol=crlf - # Text files to always have LF (unix) line endings on checkout. +*.py text eol=lf *.sh text eol=lf *.zig text eol=lf -- cgit v1.2.3-70-g09d2 From 7470c294759d9595a7a354af07ea17ca23f21811 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Tue, 25 Apr 2023 20:23:27 +0200 Subject: Python isn't necessary --- .gitattributes | 1 - 1 file changed, 1 deletion(-) (limited to '.gitattributes') diff --git a/.gitattributes b/.gitattributes index cd420c4..1cb5af7 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5,6 +5,5 @@ * text=auto # Text files to always have LF (unix) line endings on checkout. -*.py text eol=lf *.sh text eol=lf *.zig text eol=lf -- cgit v1.2.3-70-g09d2