Mac配置多个github账户

2022-11-08  本文已影响0人  厦门第一帅哥
# 查询的命令
git config --global user.name
git config --global user.email
# 取消的命令
git config --global --unset user.name
git config --global --unset user.email
cd ~/.ssh
# 每个用户的邮箱不一致
ssh-keygen -t rsa -C "xxxxx@xx.com"
# 在下面输入名字的时候,建议输入不一定的公司要名字,如id_rsa_xxxxxx
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/zhaoliangchen/.ssh/id_rsa): id_rsa_xxxxxx
# 剩下的一直回车
ssh-add ~/.ssh/id_rsa_xxxx
# 添加后查看
ssh-add -l
touch config
Host 别名1随便取
HostName github.com # 其他网站如 gitee.com gitlab.com
User 你的github账户名1
IdentityFile ~/.ssh/id_rsa_xxx  # 对应你的私钥文件名


Host 别名2随便取
HostName github.com
User 你的github账户名2
IdentityFile ~/.ssh/id_rsa_xxx  # 对应你的私钥文件名
# 中间替换成你之前取的别名
git clone git@别名1随便取:xxxx/xxxx.git
上一篇 下一篇

猜你喜欢

热点阅读