chore: add gt operational directories to .gitignore#196
Conversation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
| .env*.local | ||
|
|
||
| # Gas Town (added by gt) | ||
| .runtime/ |
There was a problem hiding this comment.
SUGGESTION: Anchor ignore pattern to repo root to avoid accidentally ignoring nested .runtime/ directories
In a monorepo, .runtime/ without a leading slash will ignore that directory name anywhere, including inside subprojects. If this is intended to be root-only, consider anchoring with a leading /.
| .runtime/ | |
| /.runtime/ |
| @@ -0,0 +1,3 @@ | |||
| #!/bin/sh | |||
| command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; } | |||
There was a problem hiding this comment.
WARNING: Hook hard-fails when git-lfs is not installed
This hook exits non-zero (exit 2) if git-lfs isn’t on PATH, which will block git push for contributors/CI environments that don’t have LFS installed. If LFS is required, consider ensuring installation is enforced via onboarding/CI and making the hook message non-blocking, or gating this behavior to only repos that truly require LFS for the push.
Code Review SummaryStatus: 2 Issues Found | Recommendation: Address before merge Overview
Issue Details (click to expand)WARNING
SUGGESTION
Other Observations (not in diff)Issues found in unchanged code that cannot receive inline comments:
Files Reviewed (5 files)
|
Summary
.gitignoreentries for Gas Town operational directories (.runtime/,.claude/,.beads/,.logs/)Source
Polecat: chrome (branch
polecat/chrome/hq-rim@mlmw0c0d)MR: ki-cwh
Test plan