关于ssh-key:mac-配置多个ssh

31次阅读

共计 299 个字符,预计需要花费 1 分钟才能阅读完成。

1、cd ~/.ssh
2、配置对应 git 的 key
ssh-keygen -t rsa -C“xxxx@github.com” -f ~/.ssh/github
ssh-keygen -t rsa -C“xxxx@company.com” -f ~/.ssh/company_rsa
3、将对应的 .pub 文件内的 key 复制到对应的 github 和 igit 上的 ssh key 保留

4、批改 config 文件

Host *
        UseKeychain yes
        AddKeysToAgent yes
        IdentityFile ~/.ssh/company_rsa
        IdentityFile ~/.ssh/github
        IdentityFile ~/.ssh/id_rsa

正文完
 0