git config配置

12/10/2020 git

# config的作用域

# local 只对单个仓库有效
git config --local
# local 对当前系统用户所有仓库有效
git config --global
# local 对系统所有用户仓库有效
git config --system
1
2
3
4
5
6

# 查看config的配置

# 显示所有作用域下的配置
git config --list
# 显示global作用域下的配置
git config --list --global
1
2
3
4

# 配置用户信息

# 配置global作用域下的用户信息
git config --global user.name "yourname"
git config --global user.email "youremail"
1
2
Last Updated: 2/16/2023, 10:05:20 AM