欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mac使用多个git账号

程序员文章站 2022-05-21 19:57:08
...

话不多说,直接上干货。

1、生成密钥(SSH Key

 cd ~/.ssh

 ssh-keygen -t rsa -C “自己的邮箱地址” 

 输入文件名称,区别开不同账号的密钥文件

注意:不要输入密码。

2、git上添加公钥(不再赘述)

注:公钥获取    cat  id_rsa_one.pub

3、修改config

vi config

文件中添加(是否需要HostName 根据个人需要配置)

Host github.com

PreferredAuthentications publickey

IdentityFile ~/.ssh/id_rsa_one

User one

Host two.com

HostName xxx.com

PreferredAuthentications publickey

IdentityFile ~/.ssh/id_rsa_two

User one

 

OK,大功告成,可以愉快的玩耍了!

相关标签: Mac mac git账号