美文网首页
Git 基本配置

Git 基本配置

作者: 淡意的温柔丶 | 来源:发表于2019-01-14 11:45 被阅读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

    相关文章

      网友评论

          本文标题:Git 基本配置

          本文链接:https://www.haomeiwen.com/subject/hnsddqtx.html