git设置代理
查看git代理
git config --global --get http.proxy
设置代理
git config --global http.proxy http://127.0.0.1:10000
取消代理
git config --global --unset http.proxy
实测只需要设置http.proxy即可,https.proxy无需设置
设置单次clone使用代理,实测可用
clone: git clone -c http.proxy="127.0.0.1:10000" https://github.com/你的github用户名/xxxx.git
给当前工作区设置代理
git config --worktree http.proxy http://127.0.0.1:10000