From 80ddee81cac9530fc188e709d85fe2f7c2620e2c Mon Sep 17 00:00:00 2001 From: MichaelHatherly Date: Fri, 5 Apr 2024 18:02:48 +0100 Subject: [PATCH] Don't set initial branch --- src/code_stripping.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code_stripping.jl b/src/code_stripping.jl index 4665bc8..e21113a 100644 --- a/src/code_stripping.jl +++ b/src/code_stripping.jl @@ -50,7 +50,7 @@ function _generate_stripped_bundle(; if isdir(".git") error("Unreachable reached, this shouldn't be a git repo already.") else - run(`$gitcmd init -b main`) + run(`$gitcmd init`) run(`$gitcmd config user.name "PackageBundler"`) run(`$gitcmd config user.email ""`) run(`$gitcmd config core.autocrlf false`)