From ccd324da40d9529af445878622e2301e32a1b3ee Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Mon, 15 Dec 2025 16:37:07 +0100 Subject: [PATCH] Adds `main-*` to git.branchProtection to support worktree scenarios with multiple main branches (#283606) (see https://github.com/microsoft/vscode/issues/283598) --- .vscode/settings.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 514edcd1069..8761267a629 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -131,6 +131,7 @@ "git.ignoreLimitWarning": true, "git.branchProtection": [ "main", + "main-*", "distro", "release/*" ],