1. 概述
git 配置分為三個級別:倉庫級別、全域性級別、系統級別。
- 倉庫級別:針對當前倉庫有效。配置檔案:
<倉庫>/.git/config
- 全域性級別:針對當前使用者有效。配置檔案:
~/.gitconfig
- 系統級別:對所有使用者有效。配置檔案:
/etc/gitconfig
2. 倉庫級別配置
需要在倉庫內部執行命令。
$ git config user.name "myname"
$ git config user.email myname@163.com"
3. 全域性級別配置
$ git config --global user.name "myname"
$ git config --global user.email myname@163.com"
4. 系統級別配置
注意需要root許可權。
$ sudo git config --system user.name "myname"
$ sudo git config --system user.email myname@163.com"