-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
37 lines (37 loc) · 915 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
35
36
37
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
[color]
ui = true
[color "diff"]
meta = 11
frag = magenta ; bold
func = 146 ; bold
commit = yellow ; bold
old = red ; bold
new = green ; bold
whitespace = red reverse
[color "diff-highlight"]
oldNormal = red ; bold
oldHighlight = red 52 ; bold 52
newNormal = green ; bold
newHighlight = green 22 ; bold 22
[core]
excludesfile = /Users/zesty/.gitignore_global
pager = diff-so-fancy | less --tabs=4 -RFX
[credential]
helper = osxkeychain
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[init]
defaultBranch = master
[interactive]
diffFilter = diff-so-fancy --patch
[merge]
conflictstyle = diff3
[pull]
rebase = true
[push]
default = simple