From da65f0eeeb427753349ad2cdf20a72c9049d0644 Mon Sep 17 00:00:00 2001 From: Sakura Date: Mon, 13 Jul 2026 22:13:23 +0800 Subject: [PATCH] chore: add .install_method to .gitignore The .install_method file is written by the bootstrap installer to record the installation method (git, npm, etc.). It's runtime state, not a code change, so it should be ignored like .hermes-bootstrap-complete. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index c48fcb3515a4..9093dec796cb 100644 --- a/.gitignore +++ b/.gitignore @@ -119,6 +119,10 @@ docs/superpowers/* # treat it as a local edit and autostash it on every run (#38529). .hermes-bootstrap-complete +# Installation method marker written by the bootstrap installer. Runtime state, +# never a code change — ignore for the same reason as .hermes-bootstrap-complete. +.install_method + # Persistent dev sandbox dir (scripts/dev-sandbox.sh --persistent) .hermes-sandbox/