美文网首页
Git-03: 使用Git的最小配置

Git-03: 使用Git的最小配置

作者: WenxuanLi | 来源:发表于2019-04-01 21:40 被阅读0次

    李文轩 2019-02-07
    声明:这是本人学习极客时间的Git三剑客的笔记,有侵权请联系我。


    添加配置:

    $ git config [--local|--global|--system] user.name 'Your name'
    $ git config [--local|--global|--system] user.email 'Your email'
    

    查看配置:

    $ git config --list [--local|--global|--system]
    

    各层级区别:

    • local: 紧限当前仓库
    • global (最常出现): 当前用户的所有仓库
    • system: 本系统的所有用户
    • local config 比 global 有更高优先级;在配置 global 后,在某一仓库里配置 local 的话,系统会优先采取 local 配置

    清理配置

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

    相关文章

      网友评论

          本文标题:Git-03: 使用Git的最小配置

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