(前情提要,我们这破校园网,能clone下来但是提交不了,我也不知道为什么)
解决方法也很简单,给git设置代理就好了(就算你梯子开了全局,git默认也不走代理)
打开cmd,输入以下命令即可

// 如果是http协议
git config --global http.proxy http://127.0.0.1:10809
git config --global https.proxy http://127.0.0.1:10809
// 如果是socks5协议
git config --global http.proxy socks5://127.0.0.1:10808
git config --global https.proxy socks5://127.0.0.1:10808

其中1080810809是你代理软件的本地端口。