5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ターミナルからプルリクをさっと開く

Last updated at Posted at 2020-02-26

GitHub CLI の gh pr create を使って、ターミナルからプルリクをさっと開いて効率アップした話です💪

インストール

お馴染みの brew で簡単インストールです 🎶

console
$ brew install gh

試す

これまでは feature ブランチにて git addgit commit を済ませたら、該当のリポジトリをブラウザのタブから探したりしてプルリクを作っていましたが、プルリクを作るまでをターミナルでやっちゃいます。

console
$ gh pr create -w

これで、git addgit commit の流れでぱっとブラウザ上にプルリクエストが作成されたものが立ち上がります🖥✨

エイリアスにして更に時短

試してみて感動しましたが、このコマンド自体を忘れてしまうのでまた調べてたら意味がない...ということで、エイリアスにします。
bash なら .bash_profile 、zsh なら.zshrcなどに追加してみて下さい!

.zshrc
alias pr="gh pr create -w"

これで、prと打つだけでプルリクが開いてくれるので快適になりました😆

オマケ: bash_profile の簡単な書き方

私は以前、.bash_profileの開き方すら分からず、vim での書き方も分からなかったので、私的に一番簡単だと思う方法を載せておきます🙆‍♀️

ホームディレクトリで

console
$ open .bash_profile

そんなファイルないよと言われたら作ってあげてから開く

console
$ touch .bash_profile
$ open .bash_profile

エイリアスを書いたら、ターミナル再起動か、.bash_profile を読み込んであげる

console
$ source ~/.bash_profile

さっとプルリク、楽ちんなのでみんなも是非してみて下さい✌️

5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?