【工具】【git】同一台设备多个GitHub账号配置不同的SSH Key

前端之家收集整理的这篇文章主要介绍了【工具】【git】同一台设备多个GitHub账号配置不同的SSH Key前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

生成key

  1. ssh-keygen -t rsa -C "你的注册邮箱"
  2. 回车后提示生成文件 Enter file in which to save the key (/c/Users/Rebecca/.ssh/id_rsa) 时,不使用默认,输入id_rsa2

配置

生成key之后,修改.ssh目录下的config文件(没有就新建一个config文件

配置内容如下

#建一个github别名,新建的帐号使用这个别名做克隆和更新
Host github2
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa2

clone项目

git clone git@github2:yeying09/understandingES6.git

原文链接:/github/416189.html

猜你在找的GitHub相关文章