2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【GitHub CLI】ghコマンドでPR番号からブランチ名を取得する

Last updated at Posted at 2021-10-05

GitHub CLI を用いて、PR 番号からブランチ名を取得する方法を紹介します。

動作確認バージョン

$ gh --version
gh version 2.0.0 (2021-08-24)
https://github.com/cli/cli/releases/tag/v2.0.0

PR 番号からブランチ名を取得するコマンド

gh pr view --json headRefName --jq .headRefName [<pr-number> | <url>]
実行例
$ gh pr view --json headRefName --jq .headRefName 1234
feature/foo-bar-baz
$ gh pr view --json headRefName --jq .headRefName https://github.com/cli/cli/pull/1222
api-pagination

gh version 2.0.0 からは gh extension でカスタムコマンドを追加できるようになったので、gh get-branch-name で上記と同じことができるようにしてみました。

カスタムコマンドのインストールと実行例
$ gh extension install mascii/gh-get-branch-name
$ gh get-branch-name 1234
feature/foo-bar-baz
$ gh get-branch-name https://github.com/cli/cli/pull/1222
api-pagination

活用例

PR 番号を用いてリモートブランチをローカルブランチにマージすることができます:

git merge origin/$(gh get-branch-name 1234)
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?