diff --git a/pkg/integration/components/shell.go b/pkg/integration/components/shell.go index 847e7bd70..cb21c0c01 100644 --- a/pkg/integration/components/shell.go +++ b/pkg/integration/components/shell.go @@ -255,7 +255,7 @@ func (self *Shell) StartBisect(good string, bad string) *Shell { } func (self *Shell) Init() *Shell { - self.RunCommand([]string{"git", "init", "-b", "master"}) + self.RunCommand([]string{"git", "-c", "init.defaultBranch=master", "init"}) return self }