Files
cshenv/git/gitconfig
2016-11-30 18:32:55 -05:00

41 lines
705 B
Plaintext

[core]
#whitespace = blank-at-eol,tab-in-indent,space-before-tab,trailing-space,tabwidth=4
preloadindex = true
[color]
diff = yes
ui = yes
[alias]
br = branch
ci = commit -S
co = checkout
st = status
dc = diff --check
brm = !git br -a | grep -e master -e $USER -e review/ -e releases/
branch-name = !git branch | awk '/\\*/{print $2}'
sd = diff --name-status
last = cat-file commit HEAD
[color "branch"]
current = bold blue
[color "status"]
updated = bold blue
[color "diff"]
new = bold blue
[merge]
conflictstyle = diff3
mergetool = vimdiff
tool = vimdiff
[push]
default = upstream
[log]
showsignature = true
# vim: ft=gitconfig