2
4

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 5 years have passed since last update.

Git for Windowsでgithubの複数アカウントを切り替える

Posted at

Windowsでも同じだった

C:\Users\ユーザ名.ssh に config ファイルを作ればいいだけだった

C:\Users\ユーザ名.ssh\config

  • id_rsa_github ファイルは、OpenSSH形式の秘密鍵
Host github.com.main
  HostName github.com
  IdentityFile "C:\path\to\main_acount_github\id_rsa_github"
  User git

Host github.com.sub
  HostName github.com
  IdentityFile "C:\path\to\sub_count_github\id_rsa_github"
  User git

git cloneするとき

メインアカウントの場合

git clone git@github.com.main:メインアカウント/リポジトリ.git

# こちらはメインなので、globalにユーザ名とメールアドレスを設定しておく

サブアカウントの場合

git clone git@github.com.sub:サブアカウント/リポジトリ.git

# ユーザ名とメールアドレスをこのリポジトリ用に設定しておく
cd リポジトリ
git config --local user.name "サブユーザ名"
git config --local user.email "サブユーザメールアドレス"

ほかにいい方法があれば教えてください!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?