facebook twitter hatena line email

「Git/github/複数アカウント」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==githubで複数のアカウント別にログインする方法== $ vi ~/.ssh/config <pre> Host github.com.hoge User git Port 22 HostName github.com Identity...」)
(相違点なし)

2021年5月24日 (月) 13:28時点における版

githubで複数のアカウント別にログインする方法

$ vi ~/.ssh/config
Host github.com.hoge
  User git
  Port 22
  HostName github.com
  IdentityFile ~/.ssh/github_hoge_id_rsa
  TCPKeepAlive yes
  IdentitiesOnly yes

rsaキー作成

ssh-keygen -t rsa -C "githubのメールアドレス" -f ~/.ssh/github_hoge_id_rsa

githubのrsaに公開鍵追加

接続テスト

ssh -T github.com.hoge

以下分のようなものが帰ってくれば、成功

> Hi hogehoge! You've successfully authenticated, but GitHub does not provide shell access.

参考:https://qiita.com/yampy/items/24638156abd383e08758