GitLab/GitHub 多环境配置SSH密钥

需求:

  1. 代码有多个仓库,需要配置不同的密钥。
  1. 生成密钥(有的可以跳过)
shell 复制代码
ssh-keygen -t rsa -b 4096 -C "your_email@example.com" -f ~/.ssh/id_rsa_custom_name
  • -t rsa 指定使用 RSA 算法。
  • -b 4096 指定密钥长度为 4096 位(推荐)。
  • -f ~/.ssh/id_rsa_custom_name: 指定生成的密钥文件的路径和名称。 强烈推荐自定义名称

除了RSA算法,ED25519ECDSA 也是常见的算法,可以根据平台自行选择。

  1. 多环境配置匹配密钥

创建 SSH 配置文件:touch ~/.ssh/config

根据环境配置

Host your_host_name
    HostName your_host_url
    User git
    IdentityFile ~/.ssh/id_rsa_custom_name
  • Host: 设置匹配的主机名。
  • HostName: 实际连接的主机地址。
  • IdentityFile: 指定使用的 RSA 私钥路径。

备注:一个文件可以配置多个,用 Host分隔。

  1. 添加公钥到平台

公钥文件 以 pub 为结尾,例如 id_rsa_custom_name_pub,复制公钥到 GitLab/GitHub,保存。

  1. 验证连接

ssh -T user@host

相关推荐
wx14580848293 小时前
同时在github和gitee配置密钥
gitee·github
江梦寻5 小时前
Github 基本使用学习笔记
笔记·学习·github·印象笔记·有道云笔记
BuluAI6 小时前
GitHub Copilot革命性更新:整合顶尖AI模型,如何重塑开发体验?
github·copilot
EleganceJiaBao6 小时前
【Git】Git 命令参考手册
git·github
YRr YRr7 小时前
如何在 GitHub 上下载并切换到仓库的历史版本
github
uhakadotcom10 小时前
如何实现一个AI 驱动的具备自学习自适应能力的Rootkit
后端·架构·github
uhakadotcom10 小时前
什么是 Rootkit,如何实现一个最简单实用的 Rootkit
后端·面试·github
EleganceJiaBao11 小时前
【Git】Git 完全指南:从入门到精通
windows·分布式·git·python·github·mac·版本管理
红龙创客11 小时前
Git上传本地项目到远程仓库(gitee/github)
git·gitee·github