当前位置:   article > 正文

多个git账号的登录与切换_smartgit如何切换账号

smartgit如何切换账号

生成第一个账号的密钥:


先确保你已经有多个git账号(如:一个github的账号、一个码云的账号、...)。

在Git Bash Here的控制台里输入:


git config --global user.name "你的名称"   回车

git config --global user.email "你的邮箱"    回车


这里的邮箱是你申请git账号时的邮箱,不报错就是正确的,继续往下走

输入 ssh-keygen -t rsa -C "你的邮箱"  回车,再连续3次回车见下图:


此时看下图中有一行提示:Your public key has been saved in /c/Users/xxx/.ssh/id_rsa.pub

到该路径(C/Users/xxx/.ssh)可以看见两个文件:id_rsa、id_rsa.pub 。


复制密钥保存到git账号里。

---------------------------------

第二个git账号的配置:

1、新建user2的SSH Key

  1. #新建SSH key:
  2. $ cd ~/.ssh # 切换到C:\Users\Administrator\.ssh
  3. ssh-keygen -t rsa -C "mywork@email.com" # 新建工作的SSH key
  4. # 设置名称为id_rsa_work
  5. Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa): id_rsa_work

2、新密钥添加到SSH agent中

因为默认只读取id_rsa,为了让SSH识别新的私钥,需将其添加到SSH agent中:

ssh-add ~/.ssh/id_rsa_work

如果出现Could not open a connection to your authentication agent的错误,就试着用以下命令:

  1. ssh-agent bash
  2. ssh-add ~/.ssh/id_rsa_work

3、修改config文件
在~/.ssh目录下找到config文件,如果没有就创建:

touch config        # 创建config

然后修改如下:
我的config配置如下:

  1. # 该文件用于配置私钥对应的服务器
  2. # Default github user(first@mail.com)
  3. Host github.com
  4. HostName github.com
  5. User git
  6. IdentityFile C:/Users/Administrator/.ssh/id_rsa
  7. # second user(second@mail.com)
  8. # 建一个github别名,新建的帐号使用这个别名做克隆和更新
  9. Host github2
  10. HostName github.com
  11. User git
  12. IdentityFile C:/Users/Administrator/.ssh/id_rsa_work

如果存在的话,其实就是往这个config中添加一个Host:

  1. #建一个github别名,新建的帐号使用这个别名做克隆和更新
  2. Host github2
  3. HostName github.com
  4. User git
  5. IdentityFile ~/.ssh/id_rsa2

其规则就是:从上至下读取config的内容,在每个Host下寻找对应的私钥。这里将GitHub SSH仓库地址中的git@github.com替换成新建的Host别名如:github2,那么原地址是:git@github.com:funpeng/Mywork.git,替换后应该是:github2:funpeng/Mywork.git.

4、打开新生成的~/.ssh/id_rsa2.pub文件,将里面的内容添加到GitHub后台。

可不要忘了添加到你的另一个github帐号下的SSH Key中。

VI编辑器:

:wq:在命令模式下,执行存盘退出操作;



clone尽量用ssh

git clone ssh

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/842799
推荐阅读
相关标签
  

闽ICP备14008679号