设置Mac上Git的多账户配置,用于同时访问GitLab和Gitee

在 Mac 上配置 Git 多账户(比如 GitLab 和 Gitee)的步骤如下:

1. 生成 SSH 密钥

首先,你需要为每个 Git 服务生成一个 SSH 密钥。在终端中运行以下命令,然后按照提示操作:

bash 复制代码
ssh-keygen -t rsa -C "[email protected]"

这里的 "[email protected]" 应该替换为你在 GitLab 和 Gitee 上注册的邮箱。

2. 添加 SSH 密钥到 SSH 代理

运行以下命令,将 SSH 密钥添加到 SSH 代理中:

bash 复制代码
ssh-add ~/.ssh/id_rsa_gitlab
ssh-add ~/.ssh/id_rsa_gitee

这里的 id_rsa_gitlabid_rsa_gitee 应该替换为你生成的 SSH 密钥的文件名。

3. 配置 Git

~/.ssh 目录下创建一个 config 文件,然后添加以下内容:

bash 复制代码
# GitLab
Host gitlab.com
HostName gitlab.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_gitlab

# Gitee
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_gitee

这里的 id_rsa_gitlabid_rsa_gitee 应该替换为你生成的 SSH 密钥的文件名。

4. 测试 SSH 连接

运行以下命令,测试 SSH 连接是否正常:

bash 复制代码
ssh -T [email protected]
ssh -T [email protected]

如果一切正常,你应该能够看到类似 "Welcome to GitLab, @your-username!" 和 "Welcome to Gitee, @your-username!" 的消息。

5. 配置 Git 用户名和邮箱

在每个 Git 仓库中,你可以设置不同的用户名和邮箱。在仓库目录下,运行以下命令:

bash 复制代码
git config user.name "Your Name"
git config user.email "[email protected]"

这里的 "Your Name" 和 "[email protected]" 应该替换为你在 GitLab 和 Gitee 上注册的用户名和邮箱。

6. 配置远程仓库地址

在每个项目中,设置远程仓库地址,分别指向 GitLab 和 Gitee 的仓库地址:

bash 复制代码
git remote add origin_gitlab [email protected]:username/repo.git
git remote add origin_gitee [email protected]:username/repo.git

通过这些步骤,您可以在 Mac 上成功配置多个 Git 账户,以便同时访问 GitLab 和 Gitee 上的项目。

相关推荐
它说我会飞耶5 小时前
git 命令集
git
极小狐5 小时前
极狐GitLab 合并请求依赖如何解决?
运维·git·ssh·gitlab·github
ikkkkkkkl9 小时前
Git基本操作
git
互联网搬砖老肖10 小时前
git 的基本使用
大数据·git·elasticsearch
程序猿chen12 小时前
量子跃迁:Vue组件安全工程的基因重组与生态免疫(完全体终局篇)
前端·vue.js·git·安全·面试·前端框架·跳槽
SunTecTec14 小时前
Idea 配置 Git
git
chxii14 小时前
2.4.5goweb项目上传到csdn的git仓库
git
清风徐来QCQ15 小时前
git和github的使用指南
git·github
serene9415 小时前
IntelliJ IDEA 2025.2 和 JetBrains Rider 2025.1 恢复git commit为模态窗口
java·git·intellij-idea
sun00770016 小时前
git 工具
git