Git存储库克隆超时错误443

时间:2018-03-27 10:21:57

标签: git github github-for-windows

我已经下载了git并设置了名称和电子邮件变量。尝试克隆存储库时,面临443超时问题。我正在使用企业机器,这可能是问题所在。此外,git-config中的http.proxy为null,是否需要将其设置为系统IP?

面临以下错误:

  

致命:无法访问' https://github.com/XXXXXXXX/XXXXX.git/':无法连接到github.com端口443:超时

我发现了一个要求使用的帖子:

    $username = strip_tags($_POST['username']);
    $password = stripslashes($_POST['password']);
    $account_suffix = 'domain';
    $hostname = 'ldap://hostname';

    $con =  ldap_connect($hostname);
    if (!is_resource($con)) trigger_error("Unable to connect to $hostname",E_USER_WARNING);
    ldap_set_option($con, LDAP_OPT_PROTOCOL_VERSION, 3);
    ldap_set_option($con, LDAP_OPT_REFERRALS, 0);

    if (!$username = 'specific_usersname') die("HTTP Error 401.1 - Unauthorized: Access is denied");

    if (ldap_bind($con,$username . $account_suffix, $password)) echo 'Access granted!';
    else  echo 'Access Denied!';

什么是proxyUsername,proxyPassword,proxy.server.com,端口在这里?我在哪里可以查看我的机器? (Windows 7)

1 个答案:

答案 0 :(得分:-1)

http://babel.jorgebg.com/configure-proxy-windows-7

以上链接提供了有关如何在Windows 7上设置代理的说明。如果按照顺序进行操作,并且系统具有预配置的代理服务器,则可以在最终窗口中找到您要查找的值。 / p>

在你的配置中使用它们,你很有希望。