当前位置:   article > 正文

git提交时报ssh: connect to host localhost port 22: Connection refused_git 拉取项目提示ssh: connect to host localhost port 2223

git 拉取项目提示ssh: connect to host localhost port 2223: connection refused

同步github时报如下错误ssh: connect to host localhost port 22: Connection refused。
在这里插入图片描述
git远程仓库时会有两种协议,分别是ssh协议连接github,另一种是https协议连接github,而我上面之所以报ssh: connect to host localhost port 22: Connection refused是因为我使用ssh协议,但似乎被禁用掉了,所以只要更换为https协议就好,操作大致如下:

//git 查看远程仓库,以及与本地仓库的关系:
git remote show origin
//删除远程仓库配置
git remote rm origin
//使用https方式,重新添加远程仓库
git remote add origin https://xxxxx
//查看是否已经关联仓库
git remote -v
...接下来正常提交操作即可
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

参考如下:
https://www.freesion.com/article/7123240415/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/404072
推荐阅读
相关标签
  

闽ICP备14008679号