github连接被拒绝的问题

1、根据网上的教程,生成ssh key,并在自己的github中设置key,测试结果显示没有权限,如下:

ssh-keygen -t rsa -C "[email protected]"

然后复制key到github,查看是否成功

ssh -vT [email protected]

发现以下错误:

Permission denied (publickey).

2、问题其实可以参考回显:

debug1: identity file /.ssh/id_rsa type -1
debug1: identity file /.ssh/id_dsa type -1

原因就是你生成的key在.ssh这个路径下找不到,那么是哪个路径了,搜索发现,是git安装路径下,所以把你生成的文件,复制过去,就ok了


生成的key在什么路径?

输入ssh-keygen -t rsa -C "[email protected]",第一个参数可以选择生成路径,密码就不生成了,一路回车

Enter file in which to save the key (//.ssh/id_rsa): c:/test/id_rsa


修改git用户名和邮箱

git config --global user.name yourname

git config --global user.email youremail

你可能感兴趣的:(环境)