-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
53 lines (50 loc) · 1.24 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
[credential]
helper = store
[core]
pager = delta
editor = nvim
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
dark = true
line-numbers = true
hyperlinks = true
side-by-side = true
[color]
ui = auto
[alias]
chp = cherry-pick
dfs = diff --staged
df = diff
sh = stash
st = status
co = checkout
br = branch
rb = rebase
mg = merge
mgnoff = merge --no-ff
cm = commit -v
cmm = commit -v -m
cma = commit -v --amend
sw = switch
rt = reset
rs = restore
lg = log --graph --abbrev-commit --decorate --format=format:'%C(cyan)%h%C(reset) - %C(green)(%as - %ar)%C(reset) %C(white)%s%C(reset) %C(blue)- %an%C(reset)%C(yellow)%d%C(reset)'
lga = log --all --graph --abbrev-commit --decorate --format=format:'%C(cyan)%h%C(reset) - %C(green)(%as - %ar)%C(reset) %C(white)%s%C(reset) %C(blue)- %an%C(reset)%C(yellow)%d%C(reset)'
lz = !lazygit
conflicted = !nvim +Conflicted
[diff]
tool = nvimdiff
[difftool]
prompt = false
[rerere]
enabled = true
[mergetool "nvim-conflicted"]
cmd = nvim +Conflicted
[merge]
tool = nvim-conflicted
; conflictstyle = zdiff3
[user]
email = [email protected]
name = JHLEE