企业建站程序有哪些,北京市e窗口工商登记,网络营销概论,做签到的网站问题描述#xff1a;
Git : fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists。
解决方法#xff1a;
当在网上尝试大量方法仍然失败的时候#xff0c;不妨试试这个方法。
在 github 上
Git : fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists。
解决方法
当在网上尝试大量方法仍然失败的时候不妨试试这个方法。
在 github 上重新配置当前电脑或者当前邮箱生成的新的 ssh 密钥然后再次运行命令此时应该成功啦。
1、检查本地是否存在 ssh key
# 查看是否存在 id_rsa 和 id_rsa.pub文件如果存在说明已经有SSH Key
cd ~/.ssh
ls 2、若是不存在则生成ssh key
# 执行之后一直回车
ssh-keygen -t rsa -C xxxxxx.com
3、获取 ssh key 公钥内容id_rsa.pub)
cd ~/.ssh
cat id_rsa.pub
4、Github 账户上添加公钥 5、验证是否设置成功
ssh -T gitgithub.com 6、再次执行报错的命令
OK到此应该可以成功运行我是那么解决的。