mac osx 10.8 ssh有效,但是git说无法解析主机名

时间:2012-11-11 21:59:26

标签: macos git networking ssh

我正在尝试通过ssh克隆远程git repo。当我尝试ssh到远程主机时,它会提示输入密码并运行:

$ ssh gerry@5.12.221.37

但是,当我尝试克隆存储库时,它会出现此错误

$ git clone ssh://gerry@5.12.221.37:/home/gerry/gitrepos/Test.git
ssh: Could not resolve hostname 5.12.221.37:: nodename nor servname provided, or not known
fatal: The remote end hung up unexpectedly

没有任何网络问题,因为我甚至可以执行telnet到5.12.221.37端口22。

我正在使用mac osx 10.8,有谁知道我可以解决/解决这个问题?

1 个答案:

答案 0 :(得分:4)

摆脱冒号:

git clone ssh://gerry@5.12.221.37/home/gerry/gitrepos/Test.git