FastGithub/FastGithub/README.MD
2021-07-20 23:12:56 +08:00

29 lines
975 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# FastGithub
github加速神器
### 运行方式
#### windows本机
* 双击运行FastGithub.exe程序
* 程序自动设置网络适配器的主DNS为127.0.0.1
* 程序自动安装CA证书到`将所有的证书都放入下载存储\受信任的根证书颁发机构`
* FastGithub.exe start // 安装并启动服务
* FastGithub.exe stop // 卸载并删除服务
#### linux本机
* 执行./FastGithub运行程序
* 手工将你的电脑的主DNS设置为127.0.0.1
* 手工在你的电脑安装CA证书到系统根证书存储区
#### 局域网服务器
* 在局域网服务器运行FastGithub程序
* 手工将你的电脑的主DNS设置为局域网服务器的ip
* 手工在你的电脑安装CA证书到系统根证书存储区
### 证书验证
#### git ssl验证不通过
使用FastGithub之后git请求时会遇到SSL certificate problem: unable to get local issuer certificate
需要关闭git的证书验证
```
git config --global http.sslverify false
```