Git 基本配置
2019-01-14 本文已影响0人
淡意的温柔丶
配置user 信息
$ git config --global user.name ‘your_name’
$ git config --global user.email ‘your_email@domain.com’
清除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