# 常用配置 ## 设置代理 ### 针对特定域名设置代理 ```bash git config --global http.https://github.com.proxy http://127.0.0.1:7890 ``` ### 取消代理设置 ```bash git config --global --unset http.proxy git config --global --unset https.proxy ```