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:
parent
cf23279bf1
commit
1c0fb909f9
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -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/
|
||||
|
|
|
|||
Loading…
Reference in a new issue