-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitconfig
76 lines (56 loc) · 1.06 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
[user]
name = cherrry9
email = [email protected]
signingkey = FF469BD6
[commit]
gpgsign = true
[tag]
gpgsign = true
[push]
default = current
[color "status"]
added = bold blue
changed = bold white
untracked = bold red
[color "branch"]
current = bold reverse blue
local = blue
remote = yellow
[format]
pretty = %C(yellow)%h%Creset -%C(bold blue)%d%Creset %s %Cgreen(%cr) %C(bold black)<%an>%Creset
[credential]
helper = cache --timeout 28800
[rerere]
enabled = 1
autoupdate = 1
[merge]
style = diff3
tool = nvim
[mergetool]
prompt = false
[mergetool "nvim"]
cmd = nvim -f -c \"Gvdiffsplit!\" \"$MERGED\"
[diff]
tool = nvim
[difftool]
prompt = false
[difftool "nvim"]
cmd = nvim -d \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\" -c \"$wincmd w\" -c \"wincmd J\"
[alias]
a = add -v
ap = add -p
c = commit
ca = commit -a
cae = commit -a --no-edit
s = status
ss = status -s
l = log
ls = log --show-signature
lp = log -p
mt = mergetool
df = difftool
d = diff
ds = diff --staged
co = checkout
com = checkout master
cob = checkout -b