Skip to content

win 清除DNS缓存

cmd 窗口运行 ipconfig/flushdns

image.png

fatal: unable to access 解决方案

image.pngimage.png

bash
# 在开启 shadowsocks 的前提下,手动配置git的代理。git客户端输入如下两个命令就可以了。

# win
$ git config --global http.proxy http://127.0.0.1:1080 && git config --global https.proxy http://127.0.0.1:1080

# mac
## Shadowsocks
$ git config --global http.proxy http://127.0.0.1:1086 && git config --global https.proxy http://127.0.0.1:1086

## V2ray
$ git config --global http.proxy http://127.0.0.1:1087 && git config --global https.proxy http://127.0.0.1:1087

$ git config --global http.proxy 'socks5://127.0.0.1:1086' && git config --global https.proxy 'socks5://127.0.0.1:1086'


# http://也可以改成sockets5://,但是区别在于:socks5不支持通过pubkey免密登录github,每次提交代码只能输入用户名和密码。http可以支持免密登录。

# 取消代理:
$ git config --global --unset http.proxy && git config --global --unset https.proxy

# 网络代理
export http_proxy=http://127.0.0.1:1087
export https_proxy=http://127.0.0.1:1087
export no_proxy=“127.0.0.1,localhost,*inter.com

unset http_proxy
unset https_proxy

image.png