1 发现问题
问题:Please make sure you have the correct access rights and the repository exists.
当你使用git工具向GitHub提交代码时,遇到了上述问题,那么没关系,该问题已经解决
问题的关键就是没有在GitHub配置ssh key
2 解决问题
进入到你的GitHub账户的setting中,然后找到ssh key选项,添加自己的公钥即可。
第一步:
产生自己的公钥,执行如下命令:
1 | ssh-keygen -t rsa -C "your github account" |
一路默认即可,然后在cd到存放公钥的文件夹里面,使用cat命令查看,然后将其复制到GitHub的setting中:
写在最后
欢迎大家关注鄙人的公众号【麦田里的守望者zhg】,让我们一起成长,谢谢。
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment