赞
踩
git拉取项目,出现以下:
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
提示错误显示为没有权限,主要是因为不同设备上的ssh公钥不同,导致git仓库公钥出现问题,需要重新重新生成ssh公钥即可解决
打开Git Bash 进入Git命令,在需要提交的项目根目录下,
输入以下命令来设置名字和邮箱(该处填写的名字和邮箱为github上的用户名和邮箱)
git config --global user.name “你的名字”
git config --global user.email “你的邮箱”
打开C盘用户下的.ssh文件夹
地址是C:\Users(用户)\Administrator.ssh,删除known_hosts文件
ssh-keygen -t rsa -C “你的邮箱” y之后就一直回车直到完成所有步骤
完成第3步后,此时.ssh文件夹里出现了两个文件,分别为 id_rsa(密钥)和id_rsa.pub(公钥),
用记事本打开id_rsa.pub并全选复制其中的内容,密钥格式是以邮箱结尾的
打开:cd ~/.ssh
生成密钥:.ssh % ssh-keygen -t rsa -C “邮箱” 三次回车即可
打开复制密钥:cat id_rsa.pub
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。