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
相关推荐
June`3 分钟前
muduo项目排查错误+测试
linux·c++·github·muduo网络库
春日见4 分钟前
如何创建一个PR
运维·开发语言·windows·git·docker·容器
weixin_6682 小时前
GitHub 2026年AI项目详细数据汇总表-AI分析-分享
人工智能·github
CoderJia程序员甲19 小时前
GitHub 热榜项目 - 日榜(2026-02-05)
ai·开源·大模型·github·ai教程
stevenzqzq19 小时前
git 常用操作
大数据·git
weixin_66820 小时前
GitHub 2026年AI项目热度分析报告-AI分析-分享
人工智能·github
Curvatureflight21 小时前
Git工作流最佳实践:从混乱到优雅
git
MicrosoftReactor1 天前
技术速递|GitHub Copilot CLI 斜杠命令速查表
github·copilot·cli
wu~9701 天前
GitHub永不遗忘,使用git push -f来覆盖的提交依旧保留
git·github
m0_694845571 天前
music-website 是什么?前后端分离音乐网站部署实战
linux·运维·服务器·云计算·github