一般公司都会有自己的代码仓库,当然也有免费公开的代码仓库Github,Gitlab,这样可能导致我们有多个代码仓库需要管理。在代码仓库上都会配置自己的ssh-key的公钥,在连接仓库的时候指定自己的私钥即可。
可以在git的配置文件中指定:
vim ~/.ssh/config
Host xxx.com
IdentityFile ~/.ssh/id_rsa_ibbase_rsa
IdentitiesOnly yes
Host yyy.com
IdentityFile ~/.ssh/id_rsa
IdentitiesOnly yes
然后再使用git克隆对应域名下的仓库就可以了