Git同时配置Gitee和GitHub

1、清除旧用户

如果之前曾设置过会在TortoiseGit 软件中查看到,如图:

可以使用下面的指令清除全局设置【推荐使用】:

bash 复制代码
git config --global --unset user.name "你的名字"
 git config --global --unset user.email "你的邮箱"

举个栗子:

bash 复制代码
git config --global --unset user.name "qiandu"
git config --global --unset user.email "2013498006@qq.com"

或者借助TortoiseGit

查看是否清除成功

bash 复制代码
git config --global --list

如果没有出现user和email,那就代表全局设置清除成功!

2、设置用户

bash 复制代码
git config --global user.name   "你的名字"
git config --global user.email  "你的邮箱"

举个栗子:

bash 复制代码
git config --global user.name   "qiandu"
git config --global user.email  "2013498006@qq.com"

或者

3、生成SSH公钥和私钥

注意 邮箱改成自己的!!!!

bash 复制代码
ssh-keygen -t rsa -C '2013498006@qq.com' -f ~/.ssh/gitee_id_rsa
bash 复制代码
ssh-keygen -t rsa -C '2013498006@qq.com' -f ~/.ssh/github_id_rsa

注意输入生成SSH-key指令后,需要按回车3次,表示empty,即"空","空"代表没有密码。

4、新建配置文件

在 ~/.ssh 目录【C:\Users\用户名.ssh】下新建一个config文件,添加如下内容(其中Host和HostName填写git服务器的域名,IdentityFile指定私钥的路径)

bash 复制代码
# github
Host github.com
    HostName github.com
    User git
    Port 443
    IdentityFile ~/.ssh/github_id_rsa

# gitee
Host gitee.com
    HostName gitee.com
    User git
    Port 22
    IdentityFile ~/.ssh/gitee_id_rsa
bash 复制代码
ssh-add ~/.ssh/gitee_id_rsa
ssh-add ~/.ssh/github_id_rsa

确认ssh-agent进程是否在运行:运行 eval $(ssh-agent) 来启动或重新启动认证代理。

bash 复制代码
 eval $(ssh-agent)

添加完毕后,可以通过执行下述代码进行验证。

bash 复制代码
ssh-add -l

5、添加对应的公钥到Gitee和GitHub

Gitee公钥 :gitee_id_rsa.pub
GitHub公钥 :github_id_rsa.pub

6、测试

bash 复制代码
ssh -T git@gitee.com
ssh -T git@gitub.com
相关推荐
大猫和小黄22 分钟前
Windows、CentOS环境下搭建自己的版本管理资料库:GitBlit
linux·服务器·windows·git
孤水寒月26 分钟前
Git忽略文件.gitignore
git·elasticsearch
DN金猿9 小时前
git命令恢复/还原某个文件、删除远程仓库中的文件
git
DWei_GaGa12 小时前
Git:查看分支、创建分支、合并分支
git
sdaxue.com12 小时前
帝国CMS:如何去掉帝国CMS登录界面的认证码登录
数据库·github·网站·帝国cms·认证码
m0_7482475513 小时前
github webhooks 实现网站自动更新
github
涵信14 小时前
Windows11 安装 Ubuntu-20.04,同时安装配置 zsh shell,配置 git 别名(alias),大大提高开发效率
linux·git·ubuntu·bash
张国荣家的弟弟14 小时前
【Yonghong 企业日常问题04】永洪BI可视化工具Linux部署全攻略(部署详解版)
linux·运维·github
油泼辣子多加15 小时前
2024年12月23日Github流行趋势
github
喝鸡汤17 小时前
一起学Git【第五节:git版本回退】
git