处理git本地代理配置问题:在本机启动代理的情况下,git bash拉取github链接仍然会出现无法访问的情况,这是由于git bash的代理端口和本机代理端口不一致造成的,修改本机git bash代理端口即可。

  • 配置代理
    设置好代理地址和代理端口即可:
git config --global http.proxy 'http://127.0.0.1:port'
  • 查看代理
git config --global --list
  • 取消代理
git config --global --unset http.proxy