1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00

Merge pull request #2124 from Ryooooooga/feature/improve-integration-test-portability

This commit is contained in:
Jesse Duffield 2022-08-19 08:25:50 +10:00 committed by GitHub
commit ce98279896
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)