Hudson Git 插件无法在 Windows 上运行
我已经使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 “Windows 上的 Hudson + Git + Gitosis 问题”中提到的 ,您需要确保 Hudson 作业首先设置
%HOME%
环境变量。该值必须引用您可以找到的目录:
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:
我刚刚遇到了完全相同的问题,但就我而言,设置
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
andHOMEPATH
variables so it would seem that different Windows Git builds (mine is version1.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.