diff --git a/pkg/integration/components/runner.go b/pkg/integration/components/runner.go index 5a5022c53..d2b31aed6 100644 --- a/pkg/integration/components/runner.go +++ b/pkg/integration/components/runner.go @@ -136,9 +136,10 @@ func createFixture(test *IntegrationTest, paths Paths) error { } shell := NewShell() - shell.RunCommand("git init") + shell.RunCommand("git init -b master") shell.RunCommand(`git config user.email "CI@example.com"`) shell.RunCommand(`git config user.name "CI"`) + shell.RunCommand(`git config commit.gpgSign false`) test.SetupRepo(shell)