You are currently viewing git配置代理

git配置代理

  • Post author:
  • Post last modified:2024 年 6 月 25 日
  • Post category:Git / Mac

一、设置全局代理

git config --global http.proxy http://172.168.2.95:8888
git config --global https.proxy http://172.168.2.95:8888

二、取消全局代理

git config --unset http.proxy
git config --unset https.proxy

三、给某个仓库设置代理

cd /path/your_repository
git config http.proxy http://172.168.2.95:8888
git config https.proxy http://172.168.2.95:8888