From f0b0967b165aecc062e61930a0a98804d4e8a898 Mon Sep 17 00:00:00 2001 From: anti Date: Thu, 23 Apr 2026 21:52:40 -0400 Subject: [PATCH] chore(gitignore): ignore dev-host noise (.311 venv, wiki clone, scratch logs) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - .311/ and .3[0-9][0-9]/ + .venv*/ — cpython-version-suffixed venvs (common convention) now covered alongside the existing .venv/. - wiki-checkout/ — local nested clone of the wiki; never a submodule. - hang.log / schem / *.pytest.log — scratch dumps from saved pytest output redirections. - deps.txt — pydeps-style dependency graph from local analysis runs. No tracked files affected; just stops new working-tree noise from showing up in git status. --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.gitignore b/.gitignore index 810322d7..2c83e652 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,7 @@ .venv/ +.venv*/ +.311/ +.3[0-9][0-9]/ logs/ .claude/* CLAUDE.md @@ -28,3 +31,16 @@ decnet.json .hypothesis/ profiles/* tests/test_decnet.db* + +# Nested git clone of the wiki — not a submodule, just a local +# working copy so we can edit docs without a full round-trip. +wiki-checkout/ + +# Scratch test/debug outputs that leak from saved `pytest > hang.log` +# or `pytest > schem` redirections. +hang.log +schem +*.pytest.log + +# pydeps-style dependency graph dumps from local analysis runs. +deps.txt