有飞机场
终端 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-03-09 17:10:46 +08:00
我想起来了一个神奇的网站 https://github.com.cnpmjs.org/
|
3
Dvel 2021-03-09 18:41:05 +08:00
我直接写了
``` Host * ProxyCommand nc -X 5 -x 127.0.0.1:xxxx %h %p ``` |
4
justin2018 OP @Dvel 666 学习了 老哥
|
5
no1xsyzy 2021-03-10 12:50:51 +08:00
@Dvel 如果你是 Host *,那么你可以把 ProxyCommand 不缩进
虽然不太确定是否有 edge case…… |
6
no1xsyzy 2021-03-10 12:55:08 +08:00
|
7
chioplkijhman 2021-03-11 09:30:44 +08:00
git config --global http.proxy http://127.0.0.1:1088
git config --global https.proxy http://127.0.0.1:1088 |