Repo hygiene: gitignore core dumps + ignore agent state in docs/architecture/ #172

Open
opened 2026-05-14 04:55:25 +00:00 by chihlasm · 0 comments
Owner

Cleanup carried forward across multiple sessions. The working tree consistently has these untracked items that should never be committed but currently warn on every git status:

  • core.144926, core.145678 (20MB core dumps at repo root, 2026-05-07)
  • docs/architecture/core.1392564 (20MB core dump under an otherwise-legit docs subdir, 2026-05-13)
  • docs/architecture/.remember/ (agent skill state, not source)

Two small changes:

  1. Add to .gitignore:
    core.[0-9]*
    **/.remember/
    
  2. Delete the existing files locally (rm core.144926 core.145678 docs/architecture/core.1392564 -rf docs/architecture/.remember/). The repo never tracked them, so there's no history to preserve.

Quick-win — single PR.

Cleanup carried forward across multiple sessions. The working tree consistently has these untracked items that should never be committed but currently warn on every `git status`: - `core.144926`, `core.145678` (20MB core dumps at repo root, 2026-05-07) - `docs/architecture/core.1392564` (20MB core dump under an otherwise-legit docs subdir, 2026-05-13) - `docs/architecture/.remember/` (agent skill state, not source) Two small changes: 1. Add to `.gitignore`: ``` core.[0-9]* **/.remember/ ``` 2. Delete the existing files locally (`rm core.144926 core.145678 docs/architecture/core.1392564 -rf docs/architecture/.remember/`). The repo never tracked them, so there's no history to preserve. Quick-win — single PR.
Sign in to join this conversation.