chore: anchor the Release/ ignore pattern to the repository root

`[Rr]elease*/` is unanchored, so it matched any directory whose name starts with
"release" at any depth -- including documentation and tooling paths that are not
build output. Two directories were silently excluded as a result:
.claude/skills/release-notes/ and .claude/skills/release-announcement/. `git add`
reported nothing and the commit simply omitted them.

bin/ and obj/ are already ignored above, so this pattern only needs to catch a
stray Release/ directory at the repository root. Anchoring it keeps that while
leaving docs/ and tooling directories tracked.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Sipke Schoorstra 2026-08-22 23:06:17 +02:00
parent cf23279bf1
commit 1c0fb909f9
No known key found for this signature in database
GPG key ID: 5C10502B28A4268F

5
.gitignore vendored
View file

@ -24,7 +24,10 @@ Thumbs.db
*.lib
*.sbr
obj/
[Rr]elease*/
# Build output only. Left unanchored this also matched documentation and tooling
# directories such as docs/images/releases/ and .claude/skills/release-*/, which
# were then silently excluded from commits. bin/ and obj/ are already ignored above.
/[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
.vs/