|
||||||||
|
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.

Hi,
about the error: Failed to connect to repository : Command "git config --local credential.helper store --file=\"C:\Windows\TEMP\git2188577699663987074.credentials\""
I think the git command that is attempted by the url validator is incorrect in two points:
-it uses both --local and --file, which are exclusive: --local tells to store in .git/config, --file tells store in the specified file.
-It sets the --file argument at the end of the command line. At least on my git client (cygwin-git, v1.7.9) it is required that the --file comes right after git config.
e.g. If I manually type the following on the command line, it works perfectly:
git config --file="C:\Windows\TEMP\git2188577699663987074.credentials" credential.helper store
I suppose this is the intention of the original command, isn't it ?