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 cedf140 commit 4777a83Copy full SHA for 4777a83
testing/test-utils/src/lib/utils/git.ts
@@ -21,6 +21,8 @@ export async function initGitRepo(
21
await git.init();
22
await git.addConfig('user.name', name);
23
await git.addConfig('user.email', email);
24
+ await git.addConfig('commit.gpgSign', 'false');
25
+ await git.addConfig('tag.gpgSign', 'false');
26
await git.branch(['-M', 'main']);
27
return git;
28
}
0 commit comments