git 配置用户信息

2018-12-16  本文已影响0人  记憶de承渃

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 ‘your_email@domain.com

    清除,--unset

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

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

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

    优先级:local > global > system


上一篇下一篇

猜你喜欢

热点阅读