aglinxinyuan opened a new pull request, #4982: URL: https://github.com/apache/texera/pull/4982
Closes #4981. ## Summary Add `.claude/` to `.gitignore` so locally-generated Claude Code artifacts (settings, launch configs, helper scripts, worktree pointers) don't get committed again. Recently [c1b6ae0543](https://github.com/apache/texera/commit/c1b6ae0543042578dfd9d227fa67b11f51dc4244) had to remove four such files; this PR closes the gap so it doesn't recur. ## Diff ```diff # agent-service is Bun-based; yarn/npm artifacts aren't needed agent-service/.yarn/ agent-service/.yarnrc.yml agent-service/yarn.lock agent-service/CLAUDE.md + +# Ignoring local Claude Code artifacts (settings, worktrees, scratch) +.claude/ ``` ## Scope | Path | Tracked before | Tracked after | |-------------------------|----------------|---------------| | `.claude/**` | possible | ignored | | `CLAUDE.md` (root) | yes | yes (unchanged) | | `agent-service/CLAUDE.md` | ignored | ignored (unchanged) | No source, build, or CI files touched. ## Test plan - [x] `git check-ignore .claude/settings.local.json` → matched by `.gitignore:137` - [x] Root `CLAUDE.md` still tracked (`git ls-files CLAUDE.md` non-empty) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
