From ba4519c0d4eba8899b1d916870ad687a26617098 Mon Sep 17 00:00:00 2001 From: epicbugs Date: Mon, 7 Sep 2026 15:33:48 +0300 Subject: [PATCH 1/2] fix: prevent install failure when CLI has authenticated with GHE Running shortened installed commands `gh extension install github/gh-stack` and `gh skill install github/gh-stack` will throw errors like `could not resolve version: could not determine default branch: HTTP 404: Not Found (https://api..ghe.com/repos/github/gh-stack)` when GH CLI is already authenticated with Github Enterprise account. --- content/pull-requests/get-started/stacked-prs-quickstart.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/pull-requests/get-started/stacked-prs-quickstart.md b/content/pull-requests/get-started/stacked-prs-quickstart.md index 9d457fc17517..1e5e1d7c2863 100644 --- a/content/pull-requests/get-started/stacked-prs-quickstart.md +++ b/content/pull-requests/get-started/stacked-prs-quickstart.md @@ -24,14 +24,14 @@ category: ## Install the CLI extension ```shell copy -gh extension install github/gh-stack +gh extension install https://github.com/github/gh-stack ``` > [!TIP] > To use stacked pull requests with AI coding agents, like {% data variables.product.prodname_copilot %}, install the `gh-stack` skill. > > ```shell copy -> gh skill install github/gh-stack +gh skill install https://github.com/github/gh-stack gh-stack > ``` ## Create your first stack @@ -104,4 +104,4 @@ gh extension install github/gh-stack * [AUTOTITLE](/pull-requests/how-tos/create-pull-requests/managing-stacked-pull-requests) * [AUTOTITLE](/pull-requests/how-tos/merge-and-close-pull-requests/merging-stacked-pull-requests) * [AUTOTITLE](/copilot/tutorials/stack-ai-generated-code-in-pull-requests) -* [AUTOTITLE](/pull-requests/tutorials/roll-out-stacked-prs) \ No newline at end of file +* [AUTOTITLE](/pull-requests/tutorials/roll-out-stacked-prs) From 8ebd9af72c17faf4f720965ebd927338ce84ca3d Mon Sep 17 00:00:00 2001 From: epicbugs Date: Mon, 7 Sep 2026 15:38:33 +0300 Subject: [PATCH 2/2] Fix installation command for gh-stack skill Updated installation command for gh-stack skill. --- content/pull-requests/get-started/stacked-prs-quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pull-requests/get-started/stacked-prs-quickstart.md b/content/pull-requests/get-started/stacked-prs-quickstart.md index 1e5e1d7c2863..1850d3f3bc84 100644 --- a/content/pull-requests/get-started/stacked-prs-quickstart.md +++ b/content/pull-requests/get-started/stacked-prs-quickstart.md @@ -31,7 +31,7 @@ gh extension install https://github.com/github/gh-stack > To use stacked pull requests with AI coding agents, like {% data variables.product.prodname_copilot %}, install the `gh-stack` skill. > > ```shell copy -gh skill install https://github.com/github/gh-stack gh-stack +> gh skill install https://github.com/github/gh-stack gh-stack > ``` ## Create your first stack