Skip to content

Commit 476188e

Browse files
author
Test User
committed
chore: remove stray artefact files and harden .gitignore Refs #2364
Remove four files that were accidentally committed to the repository root: - EOF and PYEOF: empty files from malformed shell heredocs - session-ses_2a04.md: agent session plan (6615 lines) not belonging in VCS - ~/projects/personal/.../terraphim_mcp_server-pa: home-directory stub created by an unexpanded tilde in a git command (also removes sensitive path) Add .gitignore patterns to prevent recurrence: - /EOF, /PYEOF: heredoc accident guards - /pr_review_files/: PR review working directories - /.reconcile_impl*.rs, /*.pr_gate_result*.rs: hidden artefact RS files - /*_new.rs, /*_old.rs, /cursor_*.rs: working-copy RS snapshots - /session-ses_*.md, /pr_review_*.md: agent session and review outputs - ~/: home-directory stub guard
1 parent d72f934 commit 476188e

5 files changed

Lines changed: 18 additions & 6697 deletions

File tree

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,21 @@ pi-session-*.html
133133
# Client project data - never track
134134
projects/odilo/
135135
# CI test fix verification
136+
137+
# Agent artefact files accidentally committed to repo root (#2342, #2364)
138+
# These patterns match working-copy snapshots and review outputs from
139+
# PR-reviewer/verifier/validator agents that should not be committed.
140+
/pr_review_*.md
141+
/*.pr_gate_result*.rs
142+
/*.reconcile_impl*.rs
143+
/*_new.rs
144+
/*_old.rs
145+
/cursor_*.rs
146+
/session-ses_*.md
147+
/security_audit_report_*.md
148+
/pr_review_files/
149+
# Heredoc accidents (bare EOF/PYEOF files created by malformed shell heredocs)
150+
/EOF
151+
/PYEOF
152+
# Home-directory stubs (literal '~' dir created by unexpanded tilde in git commands)
153+
~/

EOF

Whitespace-only changes.

PYEOF

Whitespace-only changes.

0 commit comments

Comments
 (0)