From 8e986584f44f09278e551b829f76dd8ba5d56f63 Mon Sep 17 00:00:00 2001 From: teknium Date: Sat, 31 Jan 2026 06:28:39 +0000 Subject: [PATCH] Update .gitignore to include private keys and CLI config - Added patterns to ignore private key files (*.ppk, *.pem) and any files starting with 'privvy'. - Included cli-config.yaml in the ignore list to prevent sensitive SSH paths from being tracked. --- .gitignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5c220d45b..32b1db7ca 100644 --- a/.gitignore +++ b/.gitignore @@ -33,4 +33,11 @@ run_datagen_megascience_glm4-6.sh data/* node_modules/ browser-use/ -agent-browser/ \ No newline at end of file +agent-browser/ +# Private keys +*.ppk +*.pem +privvy* + +# CLI config (may contain sensitive SSH paths) +cli-config.yaml