Skip to content

Commit a692d0b

Browse files
NoamGaashclaude
andcommitted
Fix the repos/ ignore pattern so the vendored dep stays tracked
git cannot re-include a path whose parent directory is excluded, so "repos/" plus "!repos/PublicTransportHackathon/" silently did nothing — the vendored dependency only got committed because it was already staged, and the next `git add` would have dropped it again and re-broken CI. Excluding the contents (repos/*) instead makes the negation work. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent ac1b4b7 commit a692d0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Thumbs.db
3333

3434
# Teammates' repos cloned for reference (./dev clone-repos) — read-only copies
3535
# with their own history upstream, not ours to carry.
36-
repos/
36+
repos/*
3737
# ...except PublicTransportHackathon, which is a real build dependency
3838
# (pyproject's publictransporthackathon points at it). It's a PRIVATE repo, so
3939
# a git+https dependency can't be fetched by CI or by anyone who clones this

0 commit comments

Comments
 (0)