Git多用户配置

作者: SnailTyan | 来源:发表于2016-10-07 21:28 被阅读919次

    文章作者:Tyan
    博客:noahsnail.com

        在Git使用中经常会碰到多用户问题,例如:你在公司里有一个git账户,在github上有一个账户,并且你想在一台电脑上同时对这两个git账户进行操作,此时就需要进行git多用户配置。
        首先配置不同的SSH KEY,使用ssh-keygen命令产生两个不同的SSH KEY,进入.ssh目录:

    #切换到.ssh目录
    cd ~/.ssh  
    #使用自己的企业邮箱产生SSH KEY
    ssh-keygen -t rsa -C "mywork@email.com"  
    #企业的可以使用id_rsa,也可以自己起名,例如:id_rsa_work
    Enter file in which to save the key (/Users/ltc/.ssh/id_rsa): id_rsa 
    #将ssh key添加到SSH agent中
    ssh-add ~/.ssh/id_rsa
    

    同理,配置自己的github账户,再有其他账户类似:

    #切换到.ssh目录
    cd ~/.ssh  
    #使用自己github的注册邮箱产生SSH KEY
    ssh-keygen -t rsa -C "mygithub@email.com"  
    #github的SSH KEY
    Enter file in which to save the key (/Users/ltc/.ssh/id_rsa): id_rsa_github
    #将ssh key添加到SSH agent中 
    ssh-add ~/.ssh/id_rsa_github
    

    在生成ssh key之后,需要分别在github的profile中和公司git的profile中编辑SSH KEY,以github为例:


    image

    在图中添加Title,可以随便写:
    将.ssh目录下对应的id_rsa_github.pub中的内容拷到Key中,点击Add SSH key按钮即可。公司的git类似。
    然后在.ssh目录下配置config文件:

     #切换到.ssh目录
    cd ~/.ssh
    #创建并编辑config文件
    vim config 
    # 粘贴到config文件中
    #公司的git地址
    Host git.***.com  
       User git
       Hostname git.***.com  #公司的git地址
       IdentityFile ~/.ssh/id_rsa  #访问公司git的SSH KEY
       Port   ***  #公司的git端口
    
    Host github.com
       User git
       Hostname github.com #github的地址
       IdentityFile ~/.ssh/id_rsa_github  #访问github的SSH KEY
    

    测试配置是否成功

    #github的地址
    ssh -T git@github.com 
    #出现如下内容,表示成功链接github,***为你的github账户的用户名
    Hi ***! You've successfully authenticated, but GitHub does not provide shell access.
    #公司的git地址
    ssh -T git@git.***.com 
    #出现如下内容,表示成功链接github,***为公司git账户的用户名
    Hi ***! You've successfully authenticated, but GitHub does not provide shell access.
    

    此时,就可以分别访问公司的git和github了。

    相关文章

      网友评论

        本文标题:Git多用户配置

        本文链接:https://www.haomeiwen.com/subject/rgayyttx.html