配置多公钥在多平台使用Git

步骤很详细,直接上教程

当我们想在不同远程仓库平台配置不同公钥时会发现不进行额外配置是不行的,只会使用默认的公钥,本篇文章便是为了解决这个问题

  1. 进入C:\Users\[你的用户名]\.ssh文件夹
    如果没有这个文件夹可以新建一下
  1. 在上述文件夹新建文件config
  1. 在该文件中填入以下模板内容

    此处举例了几个,不同平台需修改域以及我们设定的公钥文件名,文件名按自己的自行修改,建议使用眨眼睛的命名格式,

    生成公钥的命令行ssh-keygen -t rsa

bash 复制代码
# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github_id_rsa

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

# codeup
Host codeup.aliyun.com
HostName codeup.aliyun.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/codeup_id_rsa
相关推荐
深海鱼在掘金14 小时前
Git 完全指南 —— 第3章:理解工作区、暂存区、版本库三个核心
git
江华森16 小时前
Git 基础筑基:从原理到团队协作的全栈实战
git
JakeJiang20 小时前
Git 必备命令指南:从日常高频到项目开发实战
git
叫我少年2 天前
Windows 中安装 git
git
深海鱼在掘金7 天前
Git 完全指南 —— 第1章:Git 概览与版本控制演进
git
noravinsc8 天前
关于Git Flow
git
蜜獾云8 天前
在Git中配置用户名和密码
git
scx_link8 天前
通过git bash在本地创建分支,并推送到远程仓库中
开发语言·git·bash
南大白8 天前
IntelliJ IDEA 运行时的 JVM 本地内存溢出崩溃
git
码农小旋风8 天前
Claude Code 基础用法大全:对话、分析、修改、测试、Git 和工作流
人工智能·git·chatgpt·claude