? Git支持两种地址访问方式,一种是:使用ssh协议
,另一种是:使用http协议
。
? 今天在部署Git服务器拉取和上传代码是出现了以下问题ssh: connect to host gitlab.domain.com port 22: Operation timed out
。由此可以看出这是因为git在连接时使用了ssh协议默认的22端口,但是在实际工作中我们大多服务器都不会使用22端口,会指定一个特定的端口,那么解决上述报错就有以下两种方式:
- 在执行git命令时指定当前端口
例:git clone ssh://[email protected]:1212/root/Projects/Myproject.git
修改本地配置文件
vim ~/.ssh/config
hostname gitlab.domian.com port 1212
? 使用这两种方式就可以解决上述报错了。