2023/9/8小于 1 分钟
往githug提交代码,总是超时,可以配置代理
查看代理
git config --global http.proxy
git config --global https.proxy设置代理
git config --global http.proxy 127.0.0.1:10809
git config --global https.proxy 127.0.0.1:10809取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy需要自己有代理,然后才能配置。配置成功后就可以愉快的往github提交代码了!