Skip to content

Commit d6262a2

Browse files
fix: disable gpg signing on initial commit (#1615)
## PR Checklist - [x] Addresses an existing open issue: fixes #1275 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Fixes the issue by disabling GPG signing altogether. It would be nice to detect if the user is on a GUI, or wait up to only a second for the first commit... but that adds complications and race conditions (what if the first commit is running some other commands?). 💖
1 parent 9be81d9 commit d6262a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/create/createWithOptions.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ describe("createWithOptions", () => {
174174
[
175175
[
176176
"git commit --message ",
177-
"",
177+
" --no-gpg-sign",
178178
],
179179
"feat: initialized repo ✨",
180180
],

src/create/createWithOptions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export async function createWithOptions({ github, options }: GitHubAndOptions) {
5959
await withSpinner("Initializing GitHub repository", async () => {
6060
await $`git remote add origin https://github.com/${options.owner}/${options.repository}`;
6161
await $`git add -A`;
62-
await $`git commit --message ${"feat: initialized repo ✨"}`;
62+
await $`git commit --message ${"feat: initialized repo ✨"} --no-gpg-sign`;
6363
await $`git push -u origin main --force`;
6464
await initializeGitHubRepository(github.octokit, options);
6565
});

0 commit comments

Comments
 (0)