清除代理
git config --global --unset http.proxy
取消ssl验证
git config --global http.sslVerify false
编辑git文件
vim ~/.gitconfig
本地代理
git config --global http.proxy "socks5h://127.0.0.1:1086"
git config --global https.proxy "socks5h://127.0.0.1:1086"
mac Mojave 暂时没有在知乎看到,于是查到了别人写的:
清除dns
- 打开终端:launchpad里面的“终端”
- 输入:sudo killall -HUP mDNSResponder; sleep 2; 然后敲回车;
- 输入密码;然后敲回车
- command+Q退出,就好啦~
网友评论