Git配置 - git config

查看配置 - git config -l

使用git config -l 可以查看现在的git环境详细配置

查看不同级别的配置文件:

#查看系统config
git config --system --list
  
#查看当前用户(global)配置
git config --global  --list
 
#查看当前仓库配置信息
git config --local  --list

设置用户名与邮箱(用户标识,必要)

当你安装Git后首先要做的事情是设置你的用户名称和e-mail地址。这是非常重要的,因为每次Git提交都会使用该信息。它被永远的嵌入到了你的提交中:

$ git config --global user.name "mazhihong"  #名称
$ git config --global user.email "[email protected]"   #邮箱

添加配置项

git config [--local|--global|--system]  section.key value
[--local|--global|--system]  #可选的,对应本地,全局,系统不同级别的设置,请看2.3.2
section.key #区域下的键
value #对应的值

--local 项目级
--global 当前用户级
--system 系统级

删除配置项

git config [--local|--global|--system] --unset section.key

你可能感兴趣的:(Git配置 - git config)