From da7616cf8e7c57690237cfaabc61068d8073124f Mon Sep 17 00:00:00 2001 From: ByteCorum <164874887+ByteCorum@users.noreply.github.com> Date: Mon, 8 Apr 2024 20:35:26 +0300 Subject: [PATCH 1/7] Update .gitattributes --- .gitattributes | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitattributes b/.gitattributes index ca910c9..7bf4ed0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,13 +1,13 @@ # Auto detect text files and perform LF normalization -* text = auto -*.cs linguist-language = csharp -*.cpp linguist-language = C++ -*.hpp linguist-language = C++ -*.h linguist-language = C -*.rc linguist-language = Assembly -CMakeLists.txt linguist-language = CMake +* text=auto +*.cs linguist-language=csharp +*.cpp linguist-language=C++ +*.hpp linguist-language=C++ +*.h linguist-language=C +*.rc linguist-language=Assembly +CMakeLists.txt linguist-language=CMake #ignore dirs/files DragonBurn/Resources/* linguist-vendored -DragonBurn/OS-ImGui/* linguist-vendored -DragonBurn/Utils/yaml-cpp/* linguist-vendored \ No newline at end of file +DragonBurn/OS-ImGui/* linguist-vendored +DragonBurn/Utils/yaml-cpp/* linguist-vendored From baf980f688e2a4a5438287d3d08ac42928930157 Mon Sep 17 00:00:00 2001 From: ByteCorum <164874887+ByteCorum@users.noreply.github.com> Date: Mon, 8 Apr 2024 20:39:55 +0300 Subject: [PATCH 2/7] Update .gitattributes --- .gitattributes | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.gitattributes b/.gitattributes index 7bf4ed0..fd62e86 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,11 +1,6 @@ # Auto detect text files and perform LF normalization * text=auto -*.cs linguist-language=csharp -*.cpp linguist-language=C++ -*.hpp linguist-language=C++ -*.h linguist-language=C *.rc linguist-language=Assembly -CMakeLists.txt linguist-language=CMake #ignore dirs/files DragonBurn/Resources/* linguist-vendored From 038f9610f1f99ec7d659ad2c4590df91a7a4bed2 Mon Sep 17 00:00:00 2001 From: ByteCorum <164874887+ByteCorum@users.noreply.github.com> Date: Mon, 8 Apr 2024 20:41:03 +0300 Subject: [PATCH 3/7] Update .gitattributes --- .gitattributes | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index fd62e86..3283b5f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4,5 +4,3 @@ #ignore dirs/files DragonBurn/Resources/* linguist-vendored -DragonBurn/OS-ImGui/* linguist-vendored -DragonBurn/Utils/yaml-cpp/* linguist-vendored From 1feb121176e2270d67f8cbf99f3598ffe98dfb46 Mon Sep 17 00:00:00 2001 From: ByteCorum <164874887+ByteCorum@users.noreply.github.com> Date: Mon, 8 Apr 2024 21:05:45 +0300 Subject: [PATCH 4/7] Update .gitattributes --- .gitattributes | 56 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 54 insertions(+), 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index 3283b5f..4981f96 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,58 @@ -# Auto detect text files and perform LF normalization +# Handle line endings automatically for files detected as text +# and leave all files detected as binary untouched. * text=auto +# The above will handle all files NOT found below + + + +# These files are text and should be normalized (Convert crlf => lf) +.gitattributes text +.gitignore text +*.md text diff=Markdown +*.cs text diff=CSharp +*.cpp text diff=C++ +*.hpp text diff=C++ +*.h text diff=C +*.c text diff=C +*.rc text diff=Assembly +CMakeLists.txt text diff=CMake + + + +# Exclude files from exporting + +.gitattributes export-ignore +.gitignore export-ignore + + + +# Enable syntax highlighting for files with extensions. + +*.md linguist-language=Markdown +*.md linguist-detectable=true + +*.cs linguist-language=CSharp +*.cs linguist-detectable=true + +*.cpp linguist-language=C++ +*.cpp linguist-detectable=true + +*.hpp linguist-language=C++ +*.hpp linguist-detectable=true + +*.h linguist-language=C +*.h linguist-detectable=true + +*.c linguist-language=C +*.c linguist-detectable=true + *.rc linguist-language=Assembly +*.rc linguist-detectable=true + +CMakeLists.txt linguist-language=CMake +CMakeLists.txt linguist-detectable=true + + +#Ignore dirs/files -#ignore dirs/files DragonBurn/Resources/* linguist-vendored From 19800a6cc5393cf328045c74ab119ad96329fafc Mon Sep 17 00:00:00 2001 From: ByteCorum <164874887+ByteCorum@users.noreply.github.com> Date: Mon, 8 Apr 2024 21:10:46 +0300 Subject: [PATCH 5/7] Update .gitattributes --- .gitattributes | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitattributes b/.gitattributes index 4981f96..c348fa3 100644 --- a/.gitattributes +++ b/.gitattributes @@ -30,6 +30,9 @@ CMakeLists.txt text diff=CMake *.md linguist-language=Markdown *.md linguist-detectable=true +*.md linguist-vendored=false +*.md linguist-generated=false +*.md linguist-documentation=false *.cs linguist-language=CSharp *.cs linguist-detectable=true @@ -48,9 +51,15 @@ CMakeLists.txt text diff=CMake *.rc linguist-language=Assembly *.rc linguist-detectable=true +*.rc linguist-vendored=false +*.rc linguist-generated=false +*.rc linguist-documentation=false CMakeLists.txt linguist-language=CMake CMakeLists.txt linguist-detectable=true +CMakeLists.txt linguist-vendored=false +CMakeLists.txt linguist-generated=false +CMakeLists.txt linguist-documentation=false #Ignore dirs/files From c5e66d181a9376805601dada1e1e4b8f6dd2ad32 Mon Sep 17 00:00:00 2001 From: ByteCorum <164874887+ByteCorum@users.noreply.github.com> Date: Mon, 8 Apr 2024 21:13:03 +0300 Subject: [PATCH 6/7] Update .gitattributes --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index c348fa3..54510df 100644 --- a/.gitattributes +++ b/.gitattributes @@ -65,3 +65,4 @@ CMakeLists.txt linguist-documentation=false #Ignore dirs/files DragonBurn/Resources/* linguist-vendored +DragonBurn/Utils/yaml-cpp/* linguist-vendored From c26a45f97128226a57d21094f09a8dad80c6f677 Mon Sep 17 00:00:00 2001 From: ByteCorum <164874887+ByteCorum@users.noreply.github.com> Date: Mon, 8 Apr 2024 21:16:15 +0300 Subject: [PATCH 7/7] Update .gitattributes --- .gitattributes | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.gitattributes b/.gitattributes index 54510df..bb9e0d0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -30,9 +30,6 @@ CMakeLists.txt text diff=CMake *.md linguist-language=Markdown *.md linguist-detectable=true -*.md linguist-vendored=false -*.md linguist-generated=false -*.md linguist-documentation=false *.cs linguist-language=CSharp *.cs linguist-detectable=true @@ -51,15 +48,9 @@ CMakeLists.txt text diff=CMake *.rc linguist-language=Assembly *.rc linguist-detectable=true -*.rc linguist-vendored=false -*.rc linguist-generated=false -*.rc linguist-documentation=false CMakeLists.txt linguist-language=CMake CMakeLists.txt linguist-detectable=true -CMakeLists.txt linguist-vendored=false -CMakeLists.txt linguist-generated=false -CMakeLists.txt linguist-documentation=false #Ignore dirs/files