首页 > 其他 > 详细

记一次阿里云效 ssh git推送失败的问题

时间:2021-05-25 12:16:22      阅读:11      评论:0      收藏:0      [点我收藏+]

执行:

git push

报错:

fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

原因是我们公司的网被阿里墙了,解决方法:
1.直接换http协议推送
2.给ssh加一个代理
win10配置方法:
配置文件位置:C:/user/{username}/.ssh/config
如果config文件不存在就新建一个

# 配置代理 socket5 代理
ProxyCommand connect -S 127.0.0.1:10888 -a none %h %p 

Host codeup.aliyun.com
  User git
  Port 22
  Hostname codeup.aliyun.com
  # 注意修改路径为你的路径
  IdentityFile "C:\Users\69542\.ssh\id_rsa"
  TCPKeepAlive yes

记一次阿里云效 ssh git推送失败的问题

原文:https://www.cnblogs.com/zjhblogs/p/14807553.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!