今天加班看jira,发现D盘塞满了,log就占了+G,上次清理才过去半年。
下午空闲看一下git命令……
gitconfig配置Git的相关参数。
Git一共有3个配置文件:
仓库级的配置文件:在仓库的.git/.gitconfig,该配置文件只对所在的仓库有效。
全局配置文件:Mac系统在~/.gitconfig,Windows系统在C:\Users用户名.gitconfig。
系统级的配置文件:在Git的安装目录下(Mac系统下安装目录在/usr/local/git)的etc文件夹中的gitconfig。
#查看配置信息#--local:仓库级,--global:全局级,--system:系统级$gitconfig--local
--global
--system-l#查看当前生效的配置信息$gitconfig-l#编辑配置文件#--local:仓库级,--global:全局级,--system:系统级$gitconfig--local
--global
--system-e#添加配置项#--local:仓库级,--global:全局级,--system:系统级$gitconfig--local
--global
--system--addnamevalue#获取配置项$gitconfig--local
--global
--system--getname#删除配置项$gitconfig--local
--global
--system--unsetname#配置提交记录中的用户信息$gitconfig--globaluser.name用户名$gitconfig--globaluser.email邮箱地址#更改Git缓存区的大小#如果提交的内容较大,默认缓存较小,提交会失败#缓存大小单位:B,例如:(MB)$gitconfig--global