赞
踩
问题 链接git出现错误:
$ git pull
ssh: connect to host github.com port 22: Connection refused
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
ssh: connect to host github.com port 22: Connection refused这个错误提示的是连接github.com的22端口被拒绝了
ssh-keygen -t rsa -C"your_email@youremail.com"
回车 回车 回车 三次回车;
如果一切正常,去user目录下的管理账号下的 .ssh目录里面有两个文件
然后打开
https://github.com/settings/keys
选择New SSh key
然后将 id_rsa.pub里的内容添加进去
打开 git bash 输入以下命令
ssh -T git@github.com
出现了 以下 提示 就表示成功了
22端口可能被防火墙屏蔽了,可以尝试连接GitHub的443端口。
在.ssh 目录下 创建一个config 文件 并在文件里面添加如下内容,这样ssh连接GitHub的时候就会使用443端口
Host github.com
Hostname ssh.github.com
Port 443
打开 git bash 输入以下命令
ssh -T git@github.com
出现了 以下 提示 就表示成功了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。