赞
踩
安装好git后,打开git bash,进行基本设置
此处的设置与GitHub毫无关系,只是在本地标识你的身份
- git config --global user.name "your name"
- git config --global user.email xxx@126.com
可选设置网络代理
先取消所有的代理
- git config --global --unset http.proxy
- git config --global --unset https.proxy
设置 http 代理(7890端口为例)
- git config --global http.https://github.com.proxy http://127.0.0.1:7890
- git config --global https.https://github.com.proxy https://127.0.0.1:7890
设置 socks 代理(7890端口为例)
- git config --global http.proxy 'socks5://127.0.0.1:7890'
- git config --global https.proxy 'socks5://127.0.0.1:7890'
设置完成后,查看是否成功
git config --list
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。