Git配置修改
编辑
511
2022-08-24
通过命令修改
配置全局的用户名(–global此电脑所有git仓库都会使用该配置)
git config --global user.name "Your Name"
配置全局的邮箱地址(–global此电脑所有git仓库都会使用该配置)
git config --global user.email "email@example.com"
配置全局代理
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
查看配置信息
git config --system --list ## 查看系统配置
git config --global --list ## 查看当前用户配置
git config --local --list ## 查看当前仓库配置
通过配置文件修改
- 默认全局配置文件在
~/.gitconfig
- 当前项目默认配置文件在
.git/config
修改用户名和邮箱
[user]
name = wxyShine
email = wxyrrcj@gmail.com
修改代理
[http]
proxy = socks5://127.0.0.1:1086
[https]
proxy = socks5://127.0.0.1:1086
- 6
- 0
-
分享