From 950768b002d7c70696b0b64d696ad10fbe066a06 Mon Sep 17 00:00:00 2001 From: Vijit Singh Date: Thu, 4 Jun 2026 08:23:24 -0500 Subject: [PATCH] gitignore: ignore the leftover top-level worker/ dir The worker kit was extracted to the RigForge repo (#71/#74), but a stale worker/ dir can linger locally with miner runtime logs/state until that cutover is finished. It wasn't ignored, so `git add -A` would sweep in those (sometimes very large) files. Nothing under worker/ is tracked, so ignoring it is safe. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index e299bf9..3f43412 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,11 @@ config.json /build/tari/config.toml Caddyfile +# Leftover worker-kit dir (tech debt). The worker/ kit was extracted to the RigForge repo (#71/#74); +# a stale top-level worker/ can linger locally with miner runtime logs/state until that cutover is +# finished. Ignore it so a stray `git add -A` can't pull those (sometimes huge) files into the repo. +/worker/ + # Python __pycache__/ *.pyc