Git 代理设置

Git 代理设置

问题:git clone 太慢,甚至有时 git push 都不行

解决方案:

1 全局代理设置

git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890

2 只对 Git 代理设置

git config --global http.https://github.com.proxy https://127.0.0.1:7890
git config --global https.https://github.com.proxy https://127.0.0.1:7890

注:若代理不好使,须重设或取消代理设置

3 Git 查看现有配置

git config --global -l

4 取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy
posted @ 2021-10-05 01:24  SethDeng  阅读(244)  评论(0编辑  收藏  举报