美文网首页
不用每次做ssh-add 的 SSH config file

不用每次做ssh-add 的 SSH config file

作者: 暴风鱼 | 来源:发表于2021-11-20 17:53 被阅读0次

在配置文件中指定IdentityFile后,就可以不用每次ssh-add
以前每次都要 ssh-add 非常麻烦
第二三行是添加key算法,不然连不上微信的git

Host git.weixin.qq.com
    HostKeyAlgorithms +ssh-rsa
    PubkeyAcceptedKeyTypes +ssh-rsa
    IdentityFile ~/.ssh/yourKey

Host 77
    HostName 1.1.11.77
    User x
    IdentityFile ~/.ssh/x@77

Host github
    HostName github.com
    User git
    IdentityFile ~/.ssh/x_github

相关文章

网友评论

      本文标题:不用每次做ssh-add 的 SSH config file

      本文链接:https://www.haomeiwen.com/subject/rgkutrtx.html