赞
踩
Git 是分布式版本控制系统,所以,每个机器都必须自报家门:user.name 和 user.email
如果不配置用户信息,是无法进行后续操作的。
git config --global user.name "Your username"
git config --global user.email "Your email"
可以用下面的命令为 Git 启用额外的颜色
git config --global color.ui true
需要在当前仓库下进行
git config user.name "Your username"
git config user.email "Your email"
Linux 的 .gitconfig 文件一般在当前用户主目录 cd ~
Windows 的 .gitconfig 文件路径一般是 C:\Users\Administrator
Git 仓库级配置文件都在当前仓库下的 .git/config 里面
Windows 中的 .git 文件是隐藏的,需要在文件管理器中勾选【隐藏的项目】
Git 系统级配置文件都 Git 安装目录下的 /etc/gitconfig 里面
命令参数:–list
简写:-l
格式:git config [–local | --global | --system] -l
命令参数:–edit
简写:-e
格式:git config [–local | --global | --system] -e
使用 :q 来退出编辑器
注:执行这个命令的时候,Git 会用配置文件中设定的编辑器打开配置文件
命令参数:–add
格式:git config [–local | --global | --system] --add section.key value
例如我们执行命令:git config --global --add idol.name Liyuu 就能够给全局级配置文件中添加配置项
命令参数:–get
格式:git config [–local | --global | --system] --get section.key
默认是获取 local 配置文件里的配置项
直接使用 git config section.key 省略 --get 也可以
如果获取一个 section 不存在的 key,不会返回任何值
如果获取一个不存在的 section 的 key,会报错
命令参数:–unset
格式:git config [–local | --global | --system] --unset section.key
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。