Repo hygiene: gitignore core dumps + ignore agent state in docs/architecture/ #172
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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:
.gitignore: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.