From 9623399ec49e9c4315b1593866accf1d69752039 Mon Sep 17 00:00:00 2001 From: Joe DiPrima Date: Sun, 2 Aug 2026 00:59:11 -0500 Subject: [PATCH] gitignore: never commit player field logs (Steam IDs / machine names / usernames) Field logs have been kept out by hand until now -- nothing enforced it, so a stray 'git add -A' would have published player Steam IDs and machine names. Ignore *.log/*.rar/*.zip under scratchpad/night*/ while leaving the bench scripts in those directories committable, which is the existing convention. Co-Authored-By: Claude Opus 5 (1M context) --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 6e27588..ed2d2fa 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,9 @@ matchlog_*.txt # Operator control-channel secret -- NEVER commit (plaintext shared credential) operator_secret.txt + +# Player field logs: contain Steam IDs, machine names and usernames -- never commit. +# (bench .sh/.py under scratchpad/night*/ stay committable.) +scratchpad/night*/*.log +scratchpad/night*/*.rar +scratchpad/night*/*.zip