以下操作基于windows系统 Git 命令行(Git Bash)
1. 生成专用于云效的ssh key
在第三行 Enter file in which to save the key 指定新的密钥文件名,或者干脆设置到其他目录去
$ ssh-keygen -t rsa -C "zhao.longhao@163.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/DELL/.ssh/id_rsa): /c/Users/DELL/.ssh/yunxiao_id_rsa
2. 添加一个 ssh 配置文件
用于向指定域名拉取的时候,使用特定的密钥文件
$ touch ~/.ssh/config
$ vi ~/.ssh/config
文件内容:
指定该域名的 ssh key
HostName codeup.aliyun.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/yunxiao_id_rsa
3. 添加密钥到云效
复制到剪贴板的命令
cat ~/.ssh/yunxiao_id_rsa.pub | clip
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。