git

centos : yum install git

git 初始化设置

$ git config --global user.name "你的名字"
$ git config --global user.email 你的邮箱@qq.com

[](#%E8%83%8C%E6%99%AF)背景

当有多个 git 账号时,比如:

a. 一个 gitee,用于公司内部的工作开发;
b. 一个 github,用于自己进行一些开发活动;

[](#%E8%A7%A3%E5%86%B3%E6%96%B9%E6%B3%95)解决方法

  1. 生成一个公司用的 SSH-Key

    $ ssh-keygen -t rsa -C 'xxxxx@company.com' -f ~/.ssh/gitee_id_rsa
    
    
  2. 生成一个 github 用的 SSH-Key

    $ ssh-keygen -t rsa -C 'xxxxx@qq.com' -f ~/.ssh/github_id_rsa
    
    
  3. 在 ~/.ssh 目录下新建一个 config 文件,添加如下内容(其中 Host 和 HostName 填写 git 服务器的域名,IdentityFile 指定私钥的路径)

    # gitee
    Host gitee.com
    HostName gitee.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/gitee_id_rsa
    # github
    Host github.com
    HostName github.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/github_id_rsa
    
    
  4. 用 ssh 命令分别测试

    $ ssh -T git@gitee.com
    $ ssh -T git@github.com
    
    

这里以 gitee 为例,成功的话会返回下图内容