-
Notifications
You must be signed in to change notification settings - Fork 4
/
gitconfig
50 lines (50 loc) · 1.12 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
[core]
editor = vim
preloadindex = true
excludesfile = ~/.gitignore
[color]
ui = always
branch = auto
diff = auto
status = auto
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
commit = green
meta = yellow
frag = cyan
old = red
new = green
whitespace = red reverse
[diff]
tool = vimdiff
algorithm = histogram
compactionHeuristic = true
[alias]
co = checkout
graph = log --graph --date-order --all --pretty=format:'%h %Cred%d %Cgreen%ad %Cblue%cn %Creset%s' --date=short
[help]
autocorrect = 1
[pager]
log = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight | less
show = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight | less
diff = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight | less
[include]
path = ~/.gitconfig.local
[pack]
threads = 0
[apply]
whitespace = fix
[push]
default = simple
[commit]
template = ~/.gitmessage
[credential]
helper = osxkeychain
[gpg]
program = /usr/local/bin/gpg2
[pull]
rebase = true