其他分享
首页 > 其他分享> > 多个git库的ssh配置

多个git库的ssh配置

作者:互联网

当拥有多个git服务器,而且都是用ssh认证方式时,需要在~/.ssh下的config文件做如下配置

如下:第一个为本地git库,第二个为github库,第三个为默认git库

Host 192.168.1.12
  IdentityFile ~/.ssh/ying
  User ying

Host github.com
IdentityFile ~/.ssh/id_rsa.another
User anotherUser
Host *
 AddKeysToAgent yes
 UseKeychain yes
 IdentityFile ~/.ssh/id_rsa

 

标签:IdentityFile,git,多个,Host,ssh,yes,ying
来源: https://www.cnblogs.com/roostinghawk/p/10528156.html