From 80f7e7e0ccf4dc740062de405a3d52386d864498 Mon Sep 17 00:00:00 2001 From: Lachlan Donald Date: Wed, 8 Oct 2025 17:38:26 +1100 Subject: [PATCH] fix: disable git autofetch to prevent Touch ID prompts VSCode's automatic git fetch was triggering 1Password SSH key authentication every few minutes. Disabling autofetch while keeping autorefresh maintains UI responsiveness without the periodic prompts. --- vscode/settings.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vscode/settings.json b/vscode/settings.json index 27abee5..85ecd11 100644 --- a/vscode/settings.json +++ b/vscode/settings.json @@ -105,6 +105,12 @@ "MD040": false }, + //-------------------------------------------------- + // Git Configuration + //-------------------------------------------------- + "git.autofetch": false, + "git.autorefresh": true, + //-------------------------------------------------- // AmpCode Configuration //--------------------------------------------------