git 配置用户信息

config 的三个作⽤用域

        git config --local                          只对仓库有效

        git config --global                        global对登录⽤用户所有仓库有效

        git config --system                      system对系统的所有⽤用户有效

        显示 config 的配置,加 --list

        $ git config --list --local

        $ git config --list --global

        $ git config --list --system

配置 user 信息

        git config --global user.name ‘your_name’

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

    清除,--unset

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

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

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

    优先级:local > global > system


你可能感兴趣的:(git 配置用户信息)