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 1 year has passed since last update.

GitHub CLIを使ってみる

Last updated at Posted at 2022-02-26

GitHub CLIを使ってみよう

GitHub CLIを使うとブラウザ側で操作していた事がターミナルで操作できるようになりました。

Homebrewを最初にインストールしておきましょう。

brew install gh

インストールが完了するとghのコマンドが打てるようになります。

次にGitHubのログインをターミナルで行います。

gh auth login
> GitHub.com
> GitHub Enterprise Server

GitHub.comGitHub Enterprise Serverどちらか聞かれたらGitHub.comを選んでください。
すでにログインしている場合は

? You're already logged into github.com. Do you want to re-authenticate? 

と出てくるのでyを選び

> HTTPS
> SSH

Git操作に適したプロトコルは何ですか?と聞かれHTTPSSSHが出るのでHTTPSを選びます。

GitHubのクレデンシャルでGitを認証しますか?y

> Login with a web browser
> Paste an authentication token

GitHub CLIをどのように認証しますか?Login with a web browserを選びます。
認証トークンを持っているなら Paste an authentication tokenを選びます。

! First copy your one-time code: コード
- Press Enter to open github.com in your browser... 

コードには英数字がありこちらをコピーしてEnterをしたらブラウザでGitHubが開きます。さきほコピーしたやつを張り付けContinue=>Authorize Github=>自分のGitHubのパスワード入れて完了です!
あとは実行しているターミナルにEnterを押したら。

- gh config set -h github.com git_protocol https
✓ Configured git protocol
✓ Logged in as 自分のGithubの名前

これが出できたら最初の設定は完了です。

続き↓

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?