chore: Phase 4 — drop 1543 tracked local-machine artifacts (venv/, __pycache__, home/, .phase1-event-status, .gitignore.backup) #3
Reference in New Issue
Block a user
Delete Branch "devin/phase4-drop-local-junk-1776542674"
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?
Summary
Part of the sequenced cleanup tracked in issue #1. Phase 4 — remove 1543 tracked local-machine artifacts that were committed before matching
.gitignorerules were added. All patterns are now already ignored; this is pure hygiene.venv/venv/already in.gitignore; recreated withpython -m venv venv && pip install -r requirements.txt__pycache__/list_vms.cpython-312.pyc__pycache__/already in.gitignorehome/intlc/projects/proxmox/multi-chain-execution/src/api/mirror-routes.tsmulti-chain-execution/src/api/mirror-routes.tsis newer, better-structured, and has doc comments (diff confirmed before delete).phase1-event-status.gitignore.gitignore.backup.20260103_171034.gitignore.gitignoreAlso adds
/home/to.gitignoreso future home-dir paste captures don't get re-introduced at the repo root.Out of scope in this PR (deliberately)
*-AUDIT.zip/transaction-package-*.zipfiles — referenced from several docs; moving them means updating those references, which is its own PR.*_technical_plan.md/COMPREHENSIVE_STATUS_*.md/INTEGRATIONS_QUICK_REFERENCE.md— each is referenced by many docs; relocating needs a link-rewrite pass..secure/— those land in Phase 2 (history rewrite), not here.Review & Testing Checklist for Human
Risk: yellow — many files deleted, but every one matches a
.gitignorerule and nothing insrc/,scripts/, ordocs/is touched.git diff master...HEAD --name-only --diff-filter=D | grep -vE "^(venv/|__pycache__/|home/|\.phase1-event-status\$|\.gitignore\.backup\.)"returns nothing (i.e. no real code was deleted).multi-chain-execution/src/api/mirror-routes.tsstill exists on this branch and compiles — the onlymirror-routes.tscopy being deleted is the stalehome/intlc/...one.python3 -m venv venv && source venv/bin/activate && pip install -r requirements.txt(or the equivalent per the relevant script's needs) and it works.Notes
Tracking: issue #1. Follow-up PRs will handle (a) relocating the audit-archive files into their referencing doc directories and (b) the loose root
*.mddocs with link rewrites.Remove 1543 files that were committed from developer machines before matching .gitignore rules were added. All patterns involved are already ignored; this just cleans up the historical tracking. - venv/ (1539 files, Python virtualenv) - __pycache__/ (1 file — root; all 706 under venv/ covered above) - home/intlc/projects/... (1 file — stale copy of multi-chain-execution/src/api/mirror-routes.ts; the canonical in-repo version is newer and has comments) - .phase1-event-status (ephemeral phase marker) - .gitignore.backup.20260103_171034 (pre-cleanup .gitignore snapshot) Also add '/home/' to .gitignore so future operator-home paste captures don't get re-introduced. No working code changed — every deletion is of a build artifact, virtualenv content, or stale duplicate. Tracking: #1 Co-Authored-By: Nakamoto, S <defi@defi-oracle.io>View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.