git config

otnw_bsj發表於2020-10-10

git config

本文是有關Git的配置。

# list the usage of git config.
git config

如下是Git Config的幫助文件,這些基本用法經過組合,就是Git配置的常用操作方法。

usage: git config [options]

Config file location
    --global              use global config file
    --system              use system config file
    --local               use repository config file
    -f, --file <file>     use given config file
    --blob <blob-id>      read config from given blob object

Action
    --get                 get value: name [value-regex]
    --get-all             get all values: key [value-regex]
    --get-regexp          get values for regexp: name-regex [value-regex]
    --replace-all         replace all matching variables: name value [value_regex]
    --add                 add a new variable: name value
    --unset               remove a variable: name [value-regex]
    --unset-all           remove all matches: name [value-regex]
    --rename-section      rename section: old-name new-name
    --remove-section      remove a section: name
    -l, --list            list all
    -e, --edit            open an editor
    --get-color <slot>    find the color configured: [default]
    --get-colorbool <slot>
                          find the color setting: [stdout-is-tty]

Type
    --bool                value is "true" or "false"
    --int                 value is decimal number
    --bool-or-int         value is --bool or --int
    --path                value is a path (file or directory name)

Other
    -z, --null            terminate values with NUL byte
    --includes            respect include directives on lookup

Git預設新增的配置的作用域是global,也就是說使用者沒有在指定的專案下設定local的Git配置時,就會使用作用域為global的Git配置。

下面以local作用域列舉常用用法。

新增一個變數

git config --local --add user.name kitty

刪除一個變數

git config --local --unset user.name

相關文章