-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
37 lines (31 loc) · 815 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
[user]
name = Wonkyo Choe
email = [email protected]
[color]
# color opts: normal, black, red, green, yellow, blue, magenta, cyan, or white
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red
new = green
[color "status"]
added = yellow
changed = red
untracked = cyan
[core]
editor = vim
whitespace = trailing-space,space-before-tab,tab-in-indent
[alias]
graph = log --graph --pretty=format:'%Cblue%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[init]
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true