前言
由于网络问题,在拉取代码时会遇到,诸如
1
| Failed to connect to github.com port 443 after 21082 ms: Timed out
|
这时候要设置git的代理
代理设置
全局代理设置
http代理设置
1 2
| git config --global http.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080
|
socket5代理设置
1 2
| git config --global http.proxy socks5://127.0.0.1:1086 git config --global https.proxy socks5://127.0.0.1:1086
|
选择代理
使用全局代理访问国内仓库会变慢,推荐只代理github
http代理
1 2
| git config --global http.https://github.com.proxy https://127.0.0.1:1080 git config --global https.https://github.com.proxy https://127.0.0.1:1080
|
socket5代理
1 2
| git config --global http.https://github.com.proxy socks5://127.0.0.1:1086 git config --global https.https://github.com.proxy socks5://127.0.0.1:1086
|
如果在输入这条命令之前,已经输入全局代理的话,可以按照二、取消代理的方法进行取消。
注意:以上两点都是对https协议进行代理设置,也就是仅对git clone
https://www.github.com/xxxx/xxxx.git这种命令有效。对于SSH协议,也就是git clone
git@github.com:xxxxxx/xxxxxx.git这种,依旧是无效的。
取消代理
1 2
| git config --global --unset http.proxy git config --global --unset https.proxy
|
查看已有配置