git基本配置

c3tc3tc3t發表於2015-11-06

1 git基本配置
$ git config --global user.name zhangan
$ git config --global user.email xxxx@126.com

應用配置級別
--local(本地倉庫) > --global(當前使用者) > --system(整個系統)

2 檢視配置
$ git config --list --global

3 增加配置別名(但是檢視的時候只顯示最後新增別名)
$ git config --global --add user.name lisi

4 刪除配置別名(如果只有一個user.name,可以不指定lisi)
$ git config --global --unset user.name lisi

5 修改配置別名(在只有一個user.name情況下)
$ git config --global user.name wangwu

如果有多個user.name別名時候會報錯

$ git config --global user.name wangwu
warning: user.name 有多個取值
error: cannot overwrite multiple values with a single value
Use a regexp, --add or --replace-all to change user.name.