git的初始化配置
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)解决方法
生成一个公司用的 SSH-Key
$ ssh-keygen -t rsa -C 'xxxxx@company.com' -f ~/.ssh/gitee_id_rsa
生成一个 github 用的 SSH-Key
$ ssh-keygen -t rsa -C 'xxxxx@qq.com' -f ~/.ssh/github_id_rsa
在 ~/.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
用 ssh 命令分别测试
$ ssh -T git@gitee.com $ ssh -T git@github.com
这里以 gitee 为例,成功的话会返回下图内容
- 原文作者:gwozai
- 原文链接:https://blog.gwozai.com/post/git/
- 版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可,非商业转载请注明出处(作者,原文链接),商业转载请联系作者获得授权。