From 5747eaea00f8513bdad93e76b7ba3a5686aeecb2 Mon Sep 17 00:00:00 2001 From: Rob de Kort Date: Tue, 15 Oct 2024 22:41:06 +0200 Subject: [PATCH 1/2] Explain how to push to a github organization --- src/NewCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NewCommand.php b/src/NewCommand.php index eb9d938..e33178f 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -883,6 +883,7 @@ protected function askToPushToGithub() $this->githubRepository = text( label: 'What should be your full repository name?', default: $this->name, + hint: "Use `organization/$this->name` to create an organization repo.", required: true, ); } From e7e6501d3e0ac3361031f299fcac89e3b7b84f94 Mon Sep 17 00:00:00 2001 From: Rob de Kort Date: Tue, 15 Oct 2024 22:44:35 +0200 Subject: [PATCH 2/2] Update hint --- src/NewCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NewCommand.php b/src/NewCommand.php index e33178f..2c372d3 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -883,7 +883,7 @@ protected function askToPushToGithub() $this->githubRepository = text( label: 'What should be your full repository name?', default: $this->name, - hint: "Use `organization/$this->name` to create an organization repo.", + hint: "Use `yourorg/$this->name` to create a repo in your organization.", required: true, ); }