git config配置用户
用户配置
1 | git config --global user.name "name" |
配置级别
--local
[默认]:优先级高,只影响本仓库
--global
[中优先级]:影响到所有当前用户的git仓库
--system
[低优先级]:影响到全系统的git仓库
用户配置
1 | git config --global user.name "name" |
配置级别
--local
[默认]:优先级高,只影响本仓库
--global
[中优先级]:影响到所有当前用户的git仓库
--system
[低优先级]:影响到全系统的git仓库