From 95594918d08ca2c8f48babb7903fb65803302ebd Mon Sep 17 00:00:00 2001 From: Jaco Kroon Date: Mon, 30 Dec 2024 05:47:21 +0200 Subject: [PATCH] .gitattributes to exclude .git* files from git-archive. (#539) This relates to #519 and addresses the portion where "we can also exclude things like /.github/ from the release". Signed-off-by: Jaco Kroon --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..834c029 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Exclude .git* files from being exported. +.git* export-ignore -- 2.39.5