-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
34 lines (34 loc) · 875 Bytes
/
.gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[user]
name = Brian Bland
email = brian.t.bland@gmail.com
[log]
decorate = true
[push]
default = simple
[branch]
autosetuprebase = always
[color]
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
frag = cyan bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[log]
decorate = short
[alias]
rma = !git ls-files -d | xargs git rm
glog = log --all --date-order --graph --format=\"%C(yellow bold)%h %C(cyan bold)%an%C(red bold)%d%Creset %s %C(green bold)%N%Creset\"
wdiff = diff --color-words
track = !git branch -u origin/$(git symbolic-ref --short HEAD)
fetchpr = "!f() { if [ $# -gt 1 ]; then remote=$1; pr=$2; else remote=upstream; pr=$1; fi; git fetch $remote refs/pull/$pr/head:pr$pr; }; f"
[core]
excludesfile = /Users/bbland/.gitignore