mac 下配置GitHub SSH

  1. 终端进入.ssh目录,如果目录中有文件,备份一份然后获取密钥:
$ ls
$  ssh-keygen -t rsa -C "你的邮箱" ```
之后回车回车...

2. 在该目录下会有一个id_rsa.pub文件,文件里就是刚才生成的密钥,用vim等编辑器打开并复制内容。选择Setting -> SSH and GPG keys -> New SSH Key -> 粘贴内容到key中。

![Snip20161215_3.png](http://upload-images.jianshu.io/upload_images/200838-63640a086c0a2a34.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

![屏幕快照 2016-12-15 下午6.48.02.png](http://upload-images.jianshu.io/upload_images/200838-539bbdec7b0752dd.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

![屏幕快照 2016-12-15 下午6.59.57.png](http://upload-images.jianshu.io/upload_images/200838-4b7736894ef454bb.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

3.完成后再返回终端,运行:
```$ ssh -T [email protected]```
后面出现的都yes即可,出现:
HiXXX! You've successfully authenticated, but GitHub does not provide shell access.
即为连接成功。  

4.之后在终端
```$ git config --global user.email "你的邮箱"```
GitHub的配置工作完成

你可能感兴趣的:(mac 下配置GitHub SSH)