码迷,mamicode.com
首页 > 其他好文 > 详细

使用已有的私钥进行GitHub验证

时间:2018-01-14 20:18:31      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:2.3   lan   打开   私钥   配置   bash   sts   http   alt   

之前在Linux中已经生成了ssh密钥对,并且也配置好了与GitHub仓库的连接,然后想在windows上也连接一下GitHub仓库,于是把生成好的私钥先存储到windows上的一个文件夹中,接着打开git bash:
技术分享图片

然后把私钥文件移动到git的ssh目录下:

$ mv E:/git_ssh_key/id_rsa ~/.ssh
$ ls ~/.ssh
id_rsa  known_hosts

接着就可以直接进行身份验证了:

$ ssh -T git@github.com
The authenticity of host ‘github.com (192.30.255.113)‘ can‘t be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘github.com,192.30.255.113‘ (RSA) to the list of known hosts.
Enter passphrase for key ‘/c/Users/admin/.ssh/id_rsa‘:     # 你私钥的密码

# 末尾显示这一段表示验证成功
Hi Binary-ZeroOne! You‘ve successfully authenticated, but GitHub does not provide shell access.

使用已有的私钥进行GitHub验证

标签:2.3   lan   打开   私钥   配置   bash   sts   http   alt   

原文地址:http://blog.51cto.com/zero01/2060828

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!