赞
踩
全局配置代理
- git config --global http.proxy socks5://127.0.0.1:10808
- git config --global https.proxy socks5://127.0.0.1:10808
当前项目文件夹内
- git config --local http.proxy socks5://127.0.0.1:10808
- git config --local https.proxy socks5://127.0.0.1:10808
- git config --global http.proxy http://127.0.0.1:1081
- git config --global https.proxy https://127.0.0.1:1081
当前项目文件夹内
- git config --local http.proxy http://127.0.0.1:1081
- git config --local https.proxy https://127.0.0.1:1081
- git config --global --unset http.proxy
- git config --global --unset https.proxy
打开目录下 .git
文件夹
找到 config
文件
在后面添加两行
- [http]
- proxy = socks5://127.0.0.1:10808
- [https]
- proxy = socks5://127.0.0.1:10808
同理,清除代理就是把这两行删掉
全局配置的设置 在 用户文件夹下(C:\Users\yourname) .gitconfig
文件中
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。