配置SSH Key
设置github账户信息
- 添加github的名字和绑定的邮箱
git config --global user.name “your_name”
git config --global user.email “your_email@example.com”
- 查看一下
git config --global --list
如果添加成功就会显示刚才的名称和邮箱
创建
- 创建SSH Key
ssh-keygen -t rsa -C “your_email@example.com”
接着出现:
Generating public/private rasa key pair.
Enter file in which to save the key (/Users/your_user_directory/.ssh/id_rsa):(按回车)
Enter passphrase (empty for no passphrase):(输密码)
Enter same passphrase again:(再输一次密码)
输入后显示:
这样就成功配置了SSH Key,接下来要把它添加到你的GitHub账户
添加到账户
进入GitHub并登录
在右上角选择进入设置
然后在左侧选择SSH
之后添加你的SSH Key
Title随便起,Key要先在终端输入:
cat ~/.ssh/id_rsa.pub
然后把出现的一大段复制到Key的框里就可以了