Java教程

Git 代理设置

本文主要是介绍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
这篇关于Git 代理设置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!