windows環境のsourcetreeで複数のsshキーを使い分ける方法

sourcetreeの設定でsshクライアントをOpenSSHにする。opensshが入っていないならインストールする。

source00

各プロジェクトの設定で、

source1

URL/パスを

git@エイリアス名:ユーザ名/リポジトリ名

例えば

git@git-ansible:hogehoge/ansible

にする。

 

 

 

C:\Users\sawke\.ssh\config  を作成し

Host エイリアス名
HostName github.com
port 22
User git
IdentityFile 鍵へのパス

例えば

Host git-ansible
HostName github.com
port 22
User git
IdentityFile C:\users\me\.ssh\kagi_s