我有一个可以通过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是否支持端口号,还是其他?
答案 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