在 WSL2 中使用 Clash for Windows 的代理实现
[toc]
设置 WSL 中的代理
1 | code %UserProfile%\.wslconfig |
填入以下内容:
1 | [experimental] |
本质将 WSL2 中的代理设为 127.0.0.1:port
的形式。
设置 Git 的代理
设置为本机的代理
1 | git config --global http.proxy http://127.0.0.1:port |
解绑
1 | git config --global --unset http.proxy http://127.0.0.1:port |