win7怎么创建SSH key链接github仓库,解决:git error: couldn't connect to host

首先找到git安装目录下,

1.点击git-bash.exe ,运行出现窗口


win7怎么创建SSH key链接github仓库,解决:git error: couldn't connect to host_第1张图片

2.输入ssh-keygen然后系统提示输入文件保存位置等信息

win7怎么创建SSH key链接github仓库,解决:git error: couldn't connect to host_第2张图片

3.连续敲三次回车,生成的SSH key文件保存在~~/.ssh/id_rsa.pub

 win7怎么创建SSH key链接github仓库,解决:git error: couldn't connect to host_第3张图片

4.然后用文本编辑工具打开该文件,我用的是vim,命令是:

vim ~/.ssh/id_rsa.pub

 

5.接着拷贝.ssh/id_rsa.pub文件内的所以内容,将它粘帖到github帐号管理中的添加SSH key界面中。

打开github帐号管理中的添加SSH key界面的步骤如下:

1. 登录github

2. 点击右上方的Accounting settings图标

3. 选择 SSH key

4. 点击 Add SSH key

在出现的界面中填写SSH key的名称,填一个你自己喜欢的名称即可,然后将上面拷贝的~/.ssh/id_rsa.pub文件内容粘帖到key一栏,在点击“add key”按钮就可以了。

添加过程github会提示你输入一次你的github密码

 

添加完成后再次执行git clone就可以成功克隆github上的代码库了。


参照:http://justcoding.iteye.com/blog/1829693

http://stackoverflow.com/questions/11890740/git-error-couldnt-connect-to-host-while-accessing

你可能感兴趣的:(android,java)