0


在 Windows CMD 中快速设置和取消代理的简便方法

Windows CMD 中设置代理和取消代理脚本

在本教程中,您将学习如何在 Windows 命令提示符(CMD)中设置和使用代理和取消代理脚本,以便轻松切换环境变量和 Git 配置的代理设置。

第一步:创建代理脚本

  1. 打开记事本并粘贴以下内容:@echo offset PROXY_SERVER=socks5://127.0.0.1:10808rem Set environment variablessetx ALL_PROXY %PROXY_SERVER%setx all_proxy %PROXY_SERVER%rem Show current IP address (without proxy)echo Current IP address (without proxy):curl myip.ipip.netrem Set Git proxygit config --global http.proxy %PROXY_SERVER%git config --global https.proxy %PROXY_SERVER%git config --global http.proxy socks5 %PROXY_SERVER%git config --global https.proxy socks5 %PROXY_SERVER%rem Set temporary environment variables to check proxyset ALL_PROXY=%PROXY_SERVER%set all_proxy=%PROXY_SERVER%rem Check if proxy is workingecho IP address (with proxy):curl myip.ipip.netecho Proxy has been set to %PROXY_SERVER%
  2. 将文件保存为 proxy.bat

第二步:创建取消代理脚本

  1. 打开记事本并粘贴以下内容:@echo offrem Clear environment variablesset ALL_PROXY=set all_proxy=rem Clear Git proxy settingsgit config --global --unset http.proxygit config --global --unset https.proxyrem Show current IP address (without proxy)echo Current IP address (without proxy):curl myip.ipip.netecho Proxy has been removed
  2. 将文件保存为 noproxy.bat

第三步:添加脚本所在目录到系统 PATH

为了在任意位置使用

proxy

noproxy

命令,需要将脚本所在目录添加到系统的 PATH 环境变量中。

  1. 右键点击“此电脑”或“计算机”图标,然后选择“属性”。
  2. 在左侧面板中,选择“高级系统设置”。
  3. 在“系统属性”窗口中,点击“环境变量”按钮。
  4. 在“环境变量”窗口中,在“系统变量”部分找到并选择 Path 变量,然后点击“编辑”。
  5. 在“编辑环境变量”窗口中,点击“新建”,然后输入保存批处理文件的目录路径,例如 D:\scripts
  6. 点击“确定”保存更改。

第四步:运行脚本

  1. 打开 CMD(命令提示符)。
  2. 导航到保存批处理文件的目录。
  3. 输入 proxynoproxy 来运行脚本。
标签: windows git

本文转载自: https://blog.csdn.net/m0_46225620/article/details/140823769
版权归原作者 n0vvay 所有, 如有侵权,请联系我们删除。

“在 Windows CMD 中快速设置和取消代理的简便方法”的评论:

还没有评论