|
||||||||
|
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

I have made a couple of additional changes that fixed it for me:
1. line 1091 - change
environment.put("GIT_ASKPASS", launcher.isUnix() ? "/bin/echo " : "echo ");
to
environment.put("GIT_ASKPASS", launcher.isUnix() ? "/bin/echo" : "echo ");
2. line 981 - remove all the quoting:
launchCommandIn(workDir, "config", "--local", "credential.helper", "store --file=" + store.getAbsolutePath());
I'm guessing that this will screw up Windows users, so needs more work.