forked from cowboy/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
59 lines (59 loc) · 1.22 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[user]
name = Ben Alman
email = EMAIL
[core]
autocrlf = input
whitespace = fix,space-before-tab,tab-in-indent,trailing-space
excludesfile = ~/.gitignore_global
[apply]
whitespace = fix
[alias]
br = branch
ci = commit
co = checkout
df = diff
g = grep -I
lg = log -p
pp = !"echo 'Pull'; git pull; echo 'Push'; git push"
rb = rbranch
rv = review
st = status
ksdiff = difftool -y -t Kaleidoscope
[branch "master"]
remote = origin
merge = refs/heads/master
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[merge]
log = true
[difftool "Kaleidoscope"]
cmd = ksdiff-wrapper git \"$LOCAL\" \"$REMOTE\"
[rerere]
enabled = 1
[url "git@github.com:"]
insteadOf = "gh:"
pushInsteadOf = "github:"
pushInsteadOf = "git://github.com/"
[url "git://github.com/"]
insteadOf = "github:"
[url "git@gist.github.com:"]
insteadOf = "gst:"
pushInsteadOf = "gist:"
pushInsteadOf = "git://gist.github.com/"
[url "git://gist.github.com/"]
insteadOf = "gist:"
[url "git@heroku.com:"]
insteadOf = "heroku:"