标签:mil class alt key mod file strong value git
git相关的配置文件有三个
1. /etc/gitconfig:包括了适用于系统全部用户和全部项目的值。
2.~/.gitconfig:仅仅适用于当前登录用户的配置。
3. 位于git项目文件夹中的.git/config:适用于特定git项目的配置。
对于同一配置项,三个配置文件的优先级是1<2<3
二. 一些实用的配置项
1.[alias] 为git命令配置别名
例:
[alias] st = status ci = commit br = branch
当你有了上述配置后。使用git st等同于使用git stauts
2. [color] 设置git输出着色
例:
[color] ui = true
设置color.ui
为true来打开全部的默认终端着色。
对照一下,无此配置时
增加配置后
3. core.filemode 让git忽略对文件权限的改动
[core] filemode = false
4.使用vimdiff呈现Git diff差异
[diff] tool = vimdiff [difftool] prompt = false [alias] d = difftool使用时仅仅需将用到git diff的地方换为git d就能够了。
三. 用git config操作配置文件
1. 列出当前配置项
git config [–system|–global|–local] -lgit config core.filemode true运行后会在配置文件里加入
[core] filemode = true
标签:mil class alt key mod file strong value git
原文地址:http://www.cnblogs.com/brucemengbm/p/6912095.html