From 5551624d5952c5d6c103b33cc0cc8e88215f2fe5 Mon Sep 17 00:00:00 2001 From: Paul Gilber Date: Sun, 5 Nov 2023 03:07:11 +0000 Subject: [PATCH] git auto create missing upstream branch --- .devcontainer/postCreateCommand.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.devcontainer/postCreateCommand.sh b/.devcontainer/postCreateCommand.sh index fcb00b4..a891754 100755 --- a/.devcontainer/postCreateCommand.sh +++ b/.devcontainer/postCreateCommand.sh @@ -3,3 +3,5 @@ # Specify a folder for hooks (only available for git version >= 2.9) git config core.hooksPath .githooks +# Auto-create missing upstream branch +git config push.autoSetupRemote true