-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitconfig
32 lines (30 loc) · 942 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
[user]
name = Sung-jin Brian Hong
email = [email protected]
signingkey = 705A6DC6EB70B0DA217E30BFF1870D7690DF681A
[alias]
up = !git pull --autostash --rebase --prune $@ && git submodule update --init --recursive
ds = diff --staged
ci = commit -v
cia = commit -v -a
st = status
co = checkout
l = log --graph --pretty=format:'%C(yellow)%h%Creset%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)%an%Creset %C(dim normal)<%ae>%Creset' --abbrev-commit --all
lb = log --graph --pretty=format:'%C(yellow)%h%Creset%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)%an%Creset %C(dim normal)<%ae>%Creset' --abbrev-commit
[core]
excludesfile = ~/.gitignore
pager = less -X
[push]
default = simple
[color]
ui = auto
[commit]
verbose = true
gpgsign = true
[url "[email protected]:"]
insteadOf = https://github.com/
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process