赞
踩
同步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
...接下来正常提交操作即可
参考如下:
https://www.freesion.com/article/7123240415/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。