From 1cd17b5bf4656d63e7200bd6a699fe7c32f3f306 Mon Sep 17 00:00:00 2001 From: Steve Hanlon Date: Fri, 12 Jun 2026 10:12:12 +0100 Subject: [PATCH] Add .gitattributes to exclude dev files from archive MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same as the matching change in wp-site-recovery — excludes .beads/, .claude/, AGENTS.md, CLAUDE.md, .gitignore, .gitattributes itself, and steps.md (technician guide, not used at runtime) from any release archive. --- .gitattributes | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1822236 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +# Files excluded from `git archive` output (gitea's archive endpoint +# uses git archive, so these don't ship in any release zip). + +.beads/ export-ignore +.claude/ export-ignore +.gitignore export-ignore +.gitattributes export-ignore +AGENTS.md export-ignore +CLAUDE.md export-ignore +steps.md export-ignore