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

相关推荐
甜到心里的蛋糕1 小时前
github汉化
git·github
逆旅行天涯5 小时前
【vitePress】基于github快速添加评论功能(giscus)
前端·github
小华同学ai1 天前
shortlink:我敢打赌90%以上的项目都能用上的开源项目,短链生成神器,一键生成短链接的开源神器,简单又好用
github
Dong雨1 天前
写作利器:如何用 PicGo + GitHub 图床提高创作效率
github·typora·picgo·图床
Ivy_Hu6771 天前
解决github无法clone的问题
github
hunter2062062 天前
ubuntu修改hosts文件使之能下载github的文件
linux·ubuntu·github
Chris _data2 天前
git企业的使用详细命令行操作
大数据·git·elasticsearch·gitee·github
曼陀罗2 天前
【Git 篇】使用 git rebase 交互式合并提交
git·github
小华同学ai2 天前
GCPAAS/DashBoard:完全免费的仪表盘设计,基于Vue+ElementUI+G2Plot+Echarts,开源代码,简单易用!还在等什么呢
vue.js·elementui·github·echarts
几度春风里2 天前
Git代码管理工具 — 5 GitHub远程仓库
git·github