Hudson Git 插件无法在 Windows 上运行

发布于 2024-09-08 08:57:53 字数 149 浏览 5 评论 0原文

我已经使用 OpenSSH 选项安装了 msysgit。在 Git bash 中,我可以运行 ssh-agent,它管理我的 ssh 密钥的密码。 Hudson Git 插件可以使用 ssh-agent 吗?目前,它在尝试克隆时挂起,毫无疑问是在等待输入密码。

谢谢!

I have msysgit installed with OpenSSH option. In Git bash, I can run ssh-agent, and it manages the passphrase for my ssh key. Is it possible for the Hudson Git plugin to use ssh-agent? Currently, it hangs when trying to clone, no doubt waiting for the passphrase to be entered.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏九 2024-09-15 08:57:53

正如 “Windows 上的 Hudson + Git + Gitosis 问题”中提到的 ,您需要确保 Hudson 作业首先设置 %HOME% 环境变量。
该值必须引用您可以找到的目录:

.ssh
  id_rsa     # private key
  id_rsa.pub # public key

As mentioned in "Problem with Hudson + Git + Gitosis on windows", you need to make sure the Hudson job does set first a %HOME% environment variable.
That value must refer to the directory where you can find:

.ssh
  id_rsa     # private key
  id_rsa.pub # public key
顾冷 2024-09-15 08:57:53

我刚刚遇到了完全相同的问题,但就我而言,设置 HOME 并没有解决它!

就我而言,修复实际上是设置 HOMEDRIVE 和 HOMEPATH 变量,这样看起来不同的 Windows Git 版本(我的版本是 1.8.1.msysgit。 1) 使用不同的环境变量来定位 SSH 密钥。

如果有疑问,请确保使用所有三个配置 Hudson!

另请注意,您可以在“管理 Hudson”> 下配置 Hudson 范围的环境变量。 '配置系统'> “全局属性”,因此您无需为每个作业单独执行此操作。

I've just had this exact same problem but in my case setting HOME didn't fix it!

In my case the fix was actually to set the HOMEDRIVE and HOMEPATH variables so it would seem that different Windows Git builds (mine is version 1.8.1.msysgit.1) use different environment variables to locate SSH keys.

If in doubt, make sure you configure Hudson with all three!

Note also that you can configure Hudson-wide environment variables under 'Manage Hudson' > 'Configure System' > 'Global Properties', so you don't need to do this for each job individually.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文