From 5abddfbd572a94c42f7bf980616b46de0adbf9f6 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Tue, 10 Dec 2024 22:42:30 +0500 Subject: [PATCH] Add .gitattributes file for export-ignore rules. This ensures that the .git directory and .gitignore file are excluded when exporting the repository, improving distribution cleanliness. Including this file standardizes export behavior across clones. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..52c30c1 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +.git export-ignore +.gitignore export-ignore \ No newline at end of file -- 2.45.2