-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
75 lines (75 loc) · 1.63 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[user]
name = Paul Gebheim
email = [email protected]
signingkey = E5E02393651AC03E
[core]
editor = vim
excludesfile = /Users/pgebheim/.gitignore_global
[alias]
lg = log --graph --pretty=oneline --abbrev-commit --decorate
current = describe --all --match 'heads/*'
st = status
co = checkout
review = log -p --max-count=1
wdiff = diff --color-words
vimdiff = difftool -y -t vimdiff
stdiff = difftool -y -t sourcetree
w = whatchanged
grep = grep -n
d = difftool
mine = issue -a pgebheim
[diff]
mnemonicprefix = true
tool = vimdiff
[push]
default = current
[color]
branch = auto
diff = auto
grep = auto
ui = auto
[color "branch"]
# good looking colors i copy/pasted from somewhere
current = green bold
remote = red bold
[color "diff"]
# good looking colors i copy/pasted from somewhere
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
# good looking colors i copy/pasted from somewhere
added = green bold
changed = yellow bold
untracked = red
[color "sh"]
branch = yellow
[url "[email protected]:pgebheim/"]
insteadOf = me:
insteadOf = pg:
insteadOf = pgebheim:
[url "[email protected]:AugurProject/"]
insteadOf = augur:
[url "[email protected]:ethereumjs/"]
insteadOf = ethereumjs:
[credential]
helper = ssh-agent
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[difftool]
prompt = false
[url "ssh://[email protected]/"]
insteadOf = https://git.heroku.com/
[grep]
excludeDefault = true
[github]
user = pgebheim
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[rerere]
enabled = true