|
|
 |
|
|
|
|
Issue Type:
|
Bug
|
|
Assignee:
|
Nicolas De Loof
|
|
Components:
|
git, github |
|
Created:
|
02/Oct/12 2:35 AM
|
|
Description:
|
I cannot seem to get it to recognize a repository, I am just getting the following error:
Failed to connect to repository : Error performing command: git ls-remote -h https://github.com/micdoodle8/Crossbow_Mod_2.git HEAD
I've tried many, many different repos and urls. I've tried removing the https and using http instead, I've pretty much tried everything in the book with no success. I am starting to believe that it's not the url I'm putting in, but a problem with the plugin.
Thanks in advance.
|
|
Environment:
|
Ubuntu 11.04 x64
|
|
Project:
|
Jenkins
|
|
Priority:
|
Major
|
|
Reporter:
|
Mitchell Petrie
|
|
|
|
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
|
|
hi, Mitchell
i had the same problem, it looks like it because of i'm behind the company firewall
my workaround is to set the proxy for git at 'system' level (so that the 'jenkins' can read the config as well):
git config --system http.proxy "http://your_proxy_host:port"
git config --system https.proxy "http://your_proxy_host:port"
git config --system git config --system http.sslverify false
HTH