生成key
- ssh-keygen -t rsa -C "你的注册邮箱"
- 回车后提示生成文件 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