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允许安装任何来源软件