赞
踩
就想在本地拉取一下github大神的项目
遭遇诸多问题,github无权限,github并未配置公钥,github拉取代码
问题1:github未定义公钥
参考一下这位大佬的神作:https://baijiahao.baidu.com/s?id=1705605704758775994&wfr=spider&for=pc
稍微总结一下:
#获取密钥,看到箭头的pub文件,赋值然后在github配置就好
ssh-keygen -t rsa -C "邮箱@qq.com"
#密钥配置好了,记得测一下
ssh -T git@github.com
问题2:github无法获取远端仓库,未定义公钥
还有可能本地git用户和远端github的用户名、邮箱不一致
#查看注册的全局用户
git config --global --list
#发现不一样,如何替换?删掉
git config --global --unset user.name
#然后再配置
git config --global user.name "yourname",
git config --global user.email "email@email.com"
注意:配置正确了再去上述方法生成一次密钥
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。