From f17d58f9929b2e4f2cdaed433285e3a41392a348 Mon Sep 17 00:00:00 2001 From: hyungi Date: Fri, 15 May 2026 04:46:26 +0000 Subject: [PATCH] =?UTF-8?q?chore(gitignore):=20host=20venv=20+=20=EB=B0=B1?= =?UTF-8?q?=EC=97=85/=EB=A1=A4=EB=B0=B1=20=EC=8A=A4=EB=83=85=EC=83=B7=20?= =?UTF-8?q?=ED=8C=A8=ED=84=B4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .venv/ (host venv, 76M), *.bak / *.pre-* / .pre-*/ (작업 전 백업). git history가 source of truth이므로 working tree 백업은 ignore. --- .gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index 1b0dba5..1c8be9c 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,13 @@ node_modules/ # Docker volumes pgdata/ caddy_data/ + +# Host venv (run_eval 등 host에서 실행) +.venv/ + +# 작업 전 백업 / 롤백 스냅샷 (working tree only, git history 보존이 source of truth) +*.bak +*.bak-* +*.bak_* +*.pre-* +.pre-*/