当使用命令行或者vcpkg时,有时候需要设置代理来下载一些代码,那么可以这样:
本地先起一个http或者socks5的代理服务器。监听127.0.0.1:10808
如果本地是http代理服务器,在命令行执行:
代码语言:javascript复制set http_proxy=http://127.0.0.1:10808
set https_proxy=http://127.0.0.1:10808
如果本地是socks5代理服务器,那么在命令行执行:
代码语言:javascript复制set http_proxy=socks5://127.0.0.1:10808
set https_proxy=socks5://127.0.0.1:10808
这样就可以临时生效。如果这个cmd窗口关闭了,那么代理设置也就无效了。
当使用git的命令行来设置代理时,类似代码:
代码语言:javascript复制#sock5代理服务器
git config --global http.proxy 'socks5://127.0.0.1:10808'
git config --global https.proxy 'socks5://127.0.0.1:10808'
如果是http的代理服务器
git config --global http.proxy 'http://127.0.0.1:10808'
git config --global https.proxy 'https://127.0.0.1:10808'
当然,如果有git的图形化程序,比如tortoisegit,那么直接在它的setting-network里面,手动设置也可以。git的设置是全局的,如果需要取消,可以执行:
代码语言:javascript复制git config --global --unset http.proxy
git config --global --unset https.proxy