配置步骤如下:
第一步:生成ssh 密钥时,多对密钥,要取不同的名字,用来区分(例如我比较喜欢用平台命名,命名为github 和 gitlab)
第二步:远程git 配置 ssh 公钥,各自配置各自平台。
第三步:配置SSH Config 文件。这个下面详细讲。
第四步:将两个密钥加入钥匙串,然后分别测试是否配置成功
~/.ssh/id_rsa_
ssh-add ~/.ssh/id_ed25519_company
you can delete all cached keys before
$ ssh-add -D
finally, you can check your saved keys
$ ssh-add -l
git config user.name "jexchan"
$ git config user.email "[email protected]"
1:
ssh-keygen -t ed25519 -C “name@company
ssh-keygen -t ed25519 -C “[email protected]"
Host github.com-yourname
AddKeysToAgent yes
IdentityFile ~/.ssh/id_ed25519
User git
远程名字 id_ed25519_company
2:
标签:git,多个,账号,配置,add,ssh,ed25519,id From: https://www.cnblogs.com/rshsmell/p/16953747.html