mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-05 19:41:45 +08:00
feat: 更新faq
This commit is contained in:
parent
c023ea2608
commit
9fc3172818
@ -22,16 +22,27 @@ source ~/.zprofile
|
|||||||
|
|
||||||
## 终端设置代理
|
## 终端设置代理
|
||||||
|
|
||||||
在你的代理软件中找到`http`端口对应的值,替换下面设置脚本中的`1080`,然后在终端里执行。
|
在你的代理软件中找到`http`端口号,然后把下面脚本中的`1080`替换成你找到的端口号,然后在终端执行。
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
// 给终端设置代理
|
// 给终端设置代理
|
||||||
export http_proxy=http://127.0.0.1:1088;export https_proxy=$http_proxy;export all_proxy=$http_proxy
|
export http_proxy=http://127.0.0.1:1080;export https_proxy=$http_proxy;export all_proxy=$http_proxy
|
||||||
|
|
||||||
// 取消代理设置
|
// 取消代理设置
|
||||||
unset http_proxy;unset https_proxy;unset all_proxy
|
unset http_proxy;unset https_proxy;unset all_proxy
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### 验证是否生效
|
||||||
|
|
||||||
|
在终端执行以下脚本可以验证:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
curl https://www.google.com -I
|
||||||
|
```
|
||||||
|
|
||||||
|
如果返回结果第一行包含`HTTP/1.1 200 OK`则说明已生效。
|
||||||
|
|
||||||
|
|
||||||
## 取消 git 代理
|
## 取消 git 代理
|
||||||
|
|
||||||
当遇到包含"Unsupported proxy syntax in"提示的问题是,和可能是设置了`git`代理,同时代理无法访问。
|
当遇到包含"Unsupported proxy syntax in"提示的问题是,和可能是设置了`git`代理,同时代理无法访问。
|
||||||
|
Loading…
x
Reference in New Issue
Block a user