-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
96 lines (96 loc) · 2.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[core]
excludesfile = ~/.gitignore_global
editor = vim
[merge]
tool = vimdiff
[mergetool]
prompt = false
[mergetool "vimdiff"]
cmd = vimdiff
trustExitCode = true
[diff]
tool = vimdiff
renames = copies
compactionHeuristic = true
[difftool]
prompt = false
[difftool "vimdiff"]
cmd = vimdiff "$LOCAL" "$REMOTE"
trustExitCode = true
[user]
name = Chris Kim
email = chriskim06@gmail.com
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[credential]
helper = osxkeychain
[alias]
lg = log --graph --color=always --pretty=format:'%C(bold red)%h%C(reset) %C(bold cyan)<%ar> %C(green)%an%C(reset)%C(bold yellow)%d%C(reset) %C(white)%s%C(reset)'
lb = local-branches
st = status
ck = checkout
br = branch
co = commit
amend = commit --amend
noworries = update-index --assume-unchanged
mt = mergetool
dt = difftool
df = diff
dnw = diff -w --ignore-blank-lines
staged = diff --cached
untracked = ls-files -o --exclude-standard
drb = delete-remote-branch
[push]
default = simple
autoSetupRemote = true
[color]
ui = auto
[color "branch"]
current = green bold
local = white
remote = yellow
[color "diff"]
meta = "190 bold"
commit = green
frag = "165 bold"
old = red bold
new = green bold
whitespace = red reverse
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = "red bold 238"
newNormal = green bold
newHighlight = "green bold 238"
[color "status"]
added = "10 bold"
changed = "45 bold"
untracked = red bold
unmerged = white red bold
[pager]
diff = delta | less +Gg
show = delta | less +Gg
[interactive]
diffFilter = delta --color-only --features=interactive
[delta]
features = decorations line-numbers
syntax-theme = zenburn
plus-style = syntax "#003800"
minus-style = syntax "#3f0001"
[delta "decorations"]
commit-decoration-style = bold yellow
file-style = bold yellow box
file-decoration-style = none
hunk-header-decoration-style = cyan
[delta "line-numbers"]
line-numbers-left-style = cyan
line-numbers-right-style = cyan
line-numbers-minus-style = 124
line-numbers-plus-style = 28
[http]
sslVerify = true
[pull]
rebase = false
[url "git@github.com:"]
insteadOf = "https://github.com/"