
有飞机场
终端 shell 是 zsh:
# where proxy proxy() { export http_proxy="http://127.0.0.1:端口号" export https_proxy="http://127.0.0.1:端口号" export all_proxy="socks5://127.0.0.1:端口号" echo "HTTP Proxy on" } # where noproxy noproxy() { unset http_proxy unset https_proxy unset all_proxy echo "HTTP Proxy off" } 使用,终端输入proxy
~/.ssh/config 配置
Host github.com HostName github.com User git IdentityFile 密钥 ProxyCommand nc -v -x 127.0.0.1:端口号 %h %p //这个是 socks5 的代理 chrome 插件
chrome 商店 搜索GitHub 加速 目前用的是这个
使用proxychains-ng
通过 ProxyChains-NG 实现终端下任意应用代理 - 奇妙的 Linux 世界
https://www.hi-linux.com/posts/48321.html
速度上基本上杠杆的~~
1 puzzle9 2021 年 3 月 9 日 我想起来了一个神奇的网站 https://github.com.cnpmjs.org/ |
3 Dvel 2021 年 3 月 9 日 我直接写了 ``` Host * ProxyCommand nc -X 5 -x 127.0.0.1:xxxx %h %p ``` |
4 justin2018 OP @Dvel 666 学习了 老哥 |
7 chioplkijhman 2021 年 3 月 11 日 git config --global http.proxy http://127.0.0.1:1088 git config --global https.proxy http://127.0.0.1:1088 |