git配置
多项目配置不同用户
取消git全局配置
git config --global user.name "name"
git config --global user.emai "email"
在项目下配置用户信息
git config user.name "name"
git config user.emai "email"
CMD 配置
设置代理
set http_proxy=http://127.0.0.1:1080
set https_proxy=http://127.0.0.1:1080
设置为使用IE代理
netsh winhttp import proxy source=ie
网友评论