From 7fb80d7484b5e1dc3527b750ac4898a9aaa09428 Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Fri, 21 Nov 2025 11:09:06 -0700 Subject: [PATCH] :bug: Fix `.gitignore` to take account of `.github/` Problem: - The `.gitignore` file accidentally ignores the `.github` directory. Solution: - Fix it. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index aa515a5..cdb022a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ -# ignore all directories that start with . +# ignore all directories that start with . (except .github/) **/.*/ +!.github/ # ignore conventionally-named build directories **/build*/