Paydirt.

So I added a custom "git" batch script in my C:\Git\Cmd directory as C:\git\cmd\git.cmd"

@rem Do not use "echo off" to not affect any child calls.

@rem Enable extensions, the `verify other 2>nul` is a trick from the setlocal help
@verify other 2>nul
 
@rem The above script again with immediate expansion, in case delayed expansion
@rem is unavailable.
@for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI
@set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH%

@set HOME=%userprofile%


@"%git_install_root%\bin\git.exe" %*

:end
@rem End of script

And my git polling no longer hangs.

This is because I'm setting the Home directory manually. This isn't the fix for this problem, it's the proof that there is something wrong but someone could fix it up to be a little

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to