用ssh到NBGit到远程主机

时间:2011-03-18 20:00:46

标签: java git netbeans-6.9 netbeans-plugins

我正努力让它发挥作用:

使用NBGit从ssh服务器克隆git项目。我安装了NBGit,在本地运行良好,但是当给出连接参数时我不确定什么是正确的URL。

或许目前不支持它?

NBGit 0.4 for Win 6.9.1 on Win7

1 个答案:

答案 0 :(得分:1)

网址应为:

git@myserver:/myreppo

enter image description here

但正如issue 91所述,这可能效果不佳 我将探讨issue 56中提供的解决方法:

在〜/ .ssh目录中,创建一个“config”文件

在文本编辑器中打开〜/ .ssh / config并输入以下内容:

Host AHostName -- this will be the name you will be calling in nbgit
User gituser
Hostname SSH IP address --eg 192.68.24.1 --my git server
Port 1234 -- use this if you need custom ports
IdentityFile "path to your private ssh key"

从那里,网址可以是:

AHostName:myrepo