Skip to content

Commit 8aa4156

Browse files
Remove testing console logs
1 parent 7e09501 commit 8aa4156

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

src/create/createWithOptions.ts

+4-10
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,10 @@ export async function createWithOptions({ github, options }: GitHubAndOptions) {
4949

5050
if (sendToGitHub) {
5151
await withSpinner("Initializing GitHub repository", async () => {
52-
console.log(
53-
"git remote",
54-
await $`git remote add origin https://github.com/${options.owner}/${options.repository}`,
55-
);
56-
console.log("git add", await $`git add -A`);
57-
console.log(
58-
"git commit",
59-
await $`git commit --message ${"feat: initialized repo ✨"}`,
60-
);
61-
console.log("git push", await $`git push -u origin main --force`);
52+
await $`git remote add origin https://github.com/${options.owner}/${options.repository}`;
53+
await $`git add -A`;
54+
await $`git commit --message ${"feat: initialized repo ✨"}`;
55+
await $`git push -u origin main --force`;
6256
await initializeGitHubRepository(github.octokit, options);
6357
});
6458
}

0 commit comments

Comments
 (0)