From 6d5694977ba0114759f571197135f38c101d5609 Mon Sep 17 00:00:00 2001 From: Mazyar Date: Sun, 28 Jun 2026 00:36:10 +0330 Subject: [PATCH] Add .gitattributes file for text file handling - Introduced a new `.gitattributes` file to ensure consistent handling of text files across different platforms by setting the `text=auto` attribute. - This addition helps maintain cross-platform compatibility and prevents potential issues with line endings in text files. This update lays the groundwork for better version control practices in the project, enhancing collaboration among developers working on different operating systems. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2125666 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto \ No newline at end of file