chore(gitignore): host venv + 백업/롤백 스냅샷 패턴 추가
.venv/ (host venv, 76M), *.bak / *.pre-* / .pre-*/ (작업 전 백업). git history가 source of truth이므로 working tree 백업은 ignore.
This commit is contained in:
+10
@@ -37,3 +37,13 @@ node_modules/
|
|||||||
# Docker volumes
|
# Docker volumes
|
||||||
pgdata/
|
pgdata/
|
||||||
caddy_data/
|
caddy_data/
|
||||||
|
|
||||||
|
# Host venv (run_eval 등 host에서 실행)
|
||||||
|
.venv/
|
||||||
|
|
||||||
|
# 작업 전 백업 / 롤백 스냅샷 (working tree only, git history 보존이 source of truth)
|
||||||
|
*.bak
|
||||||
|
*.bak-*
|
||||||
|
*.bak_*
|
||||||
|
*.pre-*
|
||||||
|
.pre-*/
|
||||||
|
|||||||
Reference in New Issue
Block a user