不用每次做ssh-add 的 SSH config file
2021-11-20 本文已影响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