From 3af825a6f7a842e793305b491b861394f1e2456b Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Tue, 25 Jun 2024 16:40:34 +0200 Subject: [PATCH] chore(devcontainer): improve devcontainer to work on windows and linux (#8194) # Which Problems Are Solved Working on windows with a devcontainer has line ending issues which are solved with the .gitattributes file --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..5dc46e6b38 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +* text=auto eol=lf +*.{cmd,[cC][mM][dD]} text eol=crlf +*.{bat,[bB][aA][tT]} text eol=crlf \ No newline at end of file