无法克隆存储库SourceTree。没有端口号支持?

时间:2016-02-29 09:16:51

标签: ubuntu git ubuntu-14.04

我有一个可以通过IP +端口27003访问的ubuntu Web服务器 我也安装了git 我没有domainname.tld,只有ip和端口27003而不是80。

当我做git remote add origin http://[ip]:27003/mytest.git时,一切似乎都没问题。

当我想使用SourceTree克隆我的存储库并将http://[ip]:27003/mytest.git添加到“源URL”时,SourceTree会告诉我:This is not a valid source path / URL

我的网址是否错误,SourceTree是否支持端口号,还是其他?

1 个答案:

答案 0 :(得分:0)

您可以在~/.ssh/config添加配置ssh 像这样的事情

Host yourhost
   user youruser
   hostname your.ip.xx.xx
   RSAAuthentication yes
   IdentityFile ~/.ssh/yourfile.pem
   Port yourport

然后添加正常使用

git remote add origin https://yourhost/mytest.git