We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bb00ca commit 4e99801Copy full SHA for 4e99801
test/fixtures/test-repository.fixture.ts
@@ -41,6 +41,9 @@ export default class TestRepositoryFixture {
41
rmSync(this.location, { recursive: true });
42
}
43
mkdirSync(this.location);
44
+ execSync(`git config --global user.email "contact@example.com"`);
45
+ execSync(`git config --global user.name "John Doe"`);
46
+ execSync(`git config --global init.defaultBranch main`);
47
execSync(`git -C ${this.location} init`);
48
49
this.#files.forEach((file) => {
0 commit comments