赞
踩
【前言】
记录一下使用git 遇到的几个问题,有相同问题的小伙伴可以借鉴下思路。
【正文】
安装完成后,报如上错误:
- ssh: connect to host github.com port 22: Connection refused
- fatal: Could not read from remote repository.
-
-
- Please make sure you have the correct access rights
- and the repository exists.
可能情况:a.私钥公钥不匹配 (处理方案:重新生成钥匙对覆盖原有公钥私钥,将新的公钥放入gitlib)
b.询问git管理员给你配置的权限是否充足,开发者在其他人的私有项目中是没有push权限的。
c.端口是否正确:查看是否是ssh默认的22端口,如果不是命令上要添加指定端口(
添加remote:git remote add origin ssh://git@221.99.99.99:9922/xxx/CriminalIntent.git
另一个电脑clone:
git clone ssh://git@221.99.99.99:9922/xxx/CriminalIntent.git
)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。