最新买了新电脑,所以需要配置Gibhub 的 ssh 认证,这样避免了每次push 都输入帐号和密码。
以前的就电脑配置过一次了,但是过了好久自己又忘了,这里记录一下,下次就不需要再去找资料了。
1、首先安装git,百度云盘下载的地址:http://pan.baidu.com/s/1jHZb838)
2、安装好以后打开:Git Bash, 执行:
// 这里的Marishunxiang@gmail.com 是我的Github的帐号,换成你的自己帐号就好了
$ ssh-keygen -t rsa -C "Marishunxiang@gmail.com"
3、然后进入当前的用户的目录下,打开 .ssh 文件夹里面会有2个文件: id_ras 和 id_rsa.pub,比如我的电脑是Windows 8.1 系统目录是:
C:\Users\Administrator\.ssh
4、登录GitHub系统;点击右上角账号头像的“▼”→Settings→SSH and GPG keys →New SSH key。
5、复制id_rsa.pub的公钥内容。添加到Key 中,Titile可以随便填写。最后 Add SSH Key。
6、测试ssh keys是否设置成功。
$ ssh -T git@github.com
$ ssh -T git@github.com
The authenticity of host ‘github.com (192.30.253.112)’ can’t be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)? yes #确认你是否继续联系,输入yes
Warning: Permanently added ‘github.com,192.30.253.112’ (RSA) to the list of know n hosts.
Hi MariShunxiang! You’ve successfully authenticated, but GitHub does not provide shell access. #出现这句话,说明设置成功。