Git 基本配置

配置user 信息

$ git config --global user.name ‘your_name’

$ git config --global user.email ‘[email protected]

清除user信息

$ git config --unset --local user.name

$ git config --unset --global user.name

$ git config --unset --system user.name

显示config 的配置加 --list

$ git config --list --local

$ git config --list --global

$ git config --list --system

 

优先级

local > global > system

Git 基本配置_第1张图片

你可能感兴趣的:(Git 基本配置)