From 6b54e5800fa455256f835805d358260d5f33c4ce Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Fri, 21 Nov 2025 11:11:14 -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 aa515a55..cdb022ae 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*/