mac 同时配置github和gitlab账号

2022-07-15  本文已影响0人  程序媛啊

1.进入ssh文件夹

cd ~/.ssh

2.重新生成GitHub和GitLab对应的公/私密钥

ssh-keygen -t rsa -C  '我们的gitlab邮箱'  -f ~/.ssh/id_rsa_gitlab
ssh-keygen -t rsa -C  '注册github账户的邮箱'
//两次回车直接生成个人邮箱相关密钥

3.此时目录下可以查看到生成的密钥文件

-rw-r--r--  1  staff   207  7 15 10:50 config
-rw-------  1  staff  2610  7 14 17:21 id_rsa
-rw-r--r--  1  staff   573  7 14 17:21 id_rsa.pub
-rw-------  1  staff  2602  7 14 17:26 id_rsa_gitlab
-rw-r--r--  1  staff   573  7 14 17:26 id_rsa_gitlab.pub
-rw-r--r--  1  staff   187  7 15 10:41 known_hosts

4.创建&配置config文件,管理ssh会话

touch config
vim config

进入编辑页面,输入:

Host github.com
HostName github.com
User xxx@163.com       //user后边为github的邮箱
IdentityFile ~/.ssh/id_rsa
 
Host gitlab.xxx.cn    //host后边为公司gitlab域名
HostName gitlab.xxx.cn   //同上为公司gitlab域名
User xxx@163.com          //user后为gitlab的邮箱
IdentityFile ~/.ssh/id_rsa_gitlab

5.测试SSH连接

ssh -T git@github.com
ssh -t git@gitlab.xxx.cn

提示成功则表示连接成功啦!

6.本地配置

// 本地配置
$ git config --local user.name  'gitlab账号名'   
$ git config --local user.email  '公司账号邮箱' 
 
// 全局配置
$ git config --global user.name  '个人github账号名' 
$ git config --global user.email  '个人github账号邮箱'

转载自:https://blog.csdn.net/weixin_44786530/article/details/121148240

上一篇下一篇

猜你喜欢

热点阅读