美文网首页
同一台电脑设置2个git账号

同一台电脑设置2个git账号

作者: Sultan | 来源:发表于2018-09-03 16:20 被阅读18次

    1.取消global
    git config --global --unset user.name
    git config --global --unset user.email

    2.设置每个项目repo的自己的user.email
    git config user.email "xxxx@xx.com"
    git config user.name "suzie"

    3.生成ssh key
    ssh-keygen -m rsa -C "your mail" (当前目录) 然后可以命名默认id_rsa 或者id_rsa_second 把对应的pub放到公共服务器上。

    4.在.ssh中新建config文件,config文件内容:
    Host github
    hostname github.com
    User lichao2018
    IdentityFiLE ~/.ssh/github_rsa

    Host code.aliyun.com
    hostname code.aliyun.com
    User lichao2018
    IdentityFiLE ~/.ssh/github_rsa

    相关文章

      网友评论

          本文标题:同一台电脑设置2个git账号

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