git配置代理 代理 socks5带用户名密码

官方语法:

// http: 
git config [--global] http.proxy[protocol://][user[:password]@]proxyhost[:port]
// https: 
git config [--global] https.proxy[protocol://][user[:password]@]proxyhost[:port]

单个项目配置:

git config http.proxy socks5://user:password@localhost:1080
git config https.proxy socks5://user:password@localhost:1080

全局配置:

git config --global http.proxy socks5://user:password@localhost:1080
git config --global https.proxy socks5://user:password@localhost:1080

你可能感兴趣的:(git,git,代理,socks5,用户密码)