From f695901207fdac38a6ebc55970b1fcdf4ad790b3 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 2 Aug 2022 17:26:44 +0200 Subject: [PATCH] chore: nicer PR example in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a1ec73..a36c5d6 100644 --- a/README.md +++ b/README.md @@ -374,7 +374,7 @@ git branch | cut -c 3- | gum choose --no-limit | xargs git branch -D List all PRs for the current GitHub repository and checkout the chosen PR (using [`gh`](https://cli.github.com/)). ```bash -gh pr list | gum choose | cut -f1 | xargs gh pr checkout +gh pr list | cut -f1,2 | gum choose | cut -f1 | xargs gh pr checkout ``` ## Feedback