diff --git a/src/create/createWithOptions.test.ts b/src/create/createWithOptions.test.ts index 6f34c38b..1c8b535f 100644 --- a/src/create/createWithOptions.test.ts +++ b/src/create/createWithOptions.test.ts @@ -174,7 +174,7 @@ describe("createWithOptions", () => { [ [ "git commit --message ", - "", + " --no-gpg-sign", ], "feat: initialized repo ✨", ], diff --git a/src/create/createWithOptions.ts b/src/create/createWithOptions.ts index 6320b7e1..295d8cb8 100644 --- a/src/create/createWithOptions.ts +++ b/src/create/createWithOptions.ts @@ -59,7 +59,7 @@ export async function createWithOptions({ github, options }: GitHubAndOptions) { await withSpinner("Initializing GitHub repository", async () => { await $`git remote add origin https://github.com/${options.owner}/${options.repository}`; await $`git add -A`; - await $`git commit --message ${"feat: initialized repo ✨"}`; + await $`git commit --message ${"feat: initialized repo ✨"} --no-gpg-sign`; await $`git push -u origin main --force`; await initializeGitHubRepository(github.octokit, options); });