From 07db5da7509d68a3d3ac81c6ec9cf1231332881b Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Thu, 23 Jan 2025 07:48:31 -0600 Subject: [PATCH] Add .gitattributes file to manage binary files Introduced a new `.gitattributes` file to mark all files under `src/packs/` as binary. This ensures proper handling of binary files in the specified directory during Git operations. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ee08b83 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +src/packs/** binary