如何让github页面通过代理工作?

问题描述 投票:0回答:0

Stack 有很多关于如何在使用代理时使用 with git 的问题,但不是这个(只要我找到)。

那么,如何让Github Page(网站)通过代理工作呢?出于某种原因,在主文件夹中制作 .gitconfig 文件,代码如下

[http]
    proxy = http://username:password@proxyip:proxyport
    sslverify = false
[https]
    proxy = http://username:password@proxyip:proxyport
    sslverify = false
[url "https://"]
    insteadOf = git://

对我不起作用。

github proxy github-pages
© www.soinside.com 2019 - 2024. All rights reserved.