解决git无法连接github
git 报错 fatal: unable to access ‘https://github.com/.../.git‘: Recv failure Connection was rese
原因:
虽然你的电脑开了clash,但是git并没有用你电脑的系统代理。
解决方法:
git config --global --unset http.proxy
git config --global --unset https.proxygit config --global http.proxy http://127.0.0.1:7897
git config --global https.proxy http://127.0.0.1:7897