欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

git ss代理配置 博客分类: Android gitss 

程序员文章站 2024-02-16 18:23:40
...
#http、https代理的配置与取消
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080

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

#如果已使用ss代理,则通过socks5协议,通过命令行的方式走ss通道
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

#也可以直接编辑配置文件
vi ~/.gitconfig

#vi常用指令tips
dd 删除一行
:w 存盘
:q  退出




相关标签: git ss