当前位置:   article > 正文

git 设置_git bash 查看端口

git bash 查看端口

安装好git后,打开git bash,进行基本设置

此处的设置与GitHub毫无关系,只是在本地标识你的身份

  1. git config --global user.name "your name"
  2. git config --global user.email xxx@126.com

可选设置网络代理

先取消所有的代理

  1. git config --global --unset http.proxy
  2. git config --global --unset https.proxy

设置 http 代理(7890端口为例)

  1. git config --global http.https://github.com.proxy http://127.0.0.1:7890
  2. git config --global https.https://github.com.proxy https://127.0.0.1:7890

设置 socks 代理(7890端口为例)

  1. git config --global http.proxy 'socks5://127.0.0.1:7890'
  2. git config --global https.proxy 'socks5://127.0.0.1:7890'

设置完成后,查看是否成功

git config --list

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/642516
推荐阅读
  

闽ICP备14008679号