Connection reset by 13.250.177.223 port 22 fatal: Could not read from remote repository.
git使用git push提交代码时报错Connection reset by 13.250.177.223 port 22 fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.原因:本地的id_rsa.
·
git使用git push提交代码时报错
Connection reset by 13.250.177.223 port 22 fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
原因:本地的id_rsa.pub和id_rsa文件无效了,需要更新,解决方案
1、检查本地配置的用户名和邮箱
git config --global --list
显示以下结果,确认是否正确的用户名和密码
如果不正确,执行以下语句更新
git config --global user.name "yourname"
git config --global user.email "your@email.com"
2、找到主目录下的.ssh文件夹,如我当前电脑登录账号为hrm,则路径为C:\Users\hrm\.ssh,将文件夹下的文件删除
3、执行命令,一路回车
ssh-keygen -t rsa -C “your@email.com(填写github对应的邮箱)”
4、打开github,点击New SSH key
5、新增SSH key将id_rsa.pub内容添加到如图中的Key上(title可任意命名)
6、重新提交代码,提交成功
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)