-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
57 lines (46 loc) · 1 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
[user]
email = [email protected]
name = darkwater
[commit]
gpgsign = no
[init]
defaultBranch = master
[alias]
a = "add --all"
aa = "add --all"
ca = "commit --all --verbose"
c = "commit --verbose"
ci = "commit --verbose"
co = "checkout"
d = "diff"
di = "diff"
dc = "diff --cached"
s = "status"
st = "status"
l = "log --graph --abbrev=8"
la = "log --all --graph --abbrev=8"
pou = "push -u origin"
[log]
date = relative
[format]
pretty = format:%C(auto,yellow)%h %C(auto,blue)%>(8,trunc)%ad %C(auto,green)%<(7,trunc)%aN %C(auto,reset)%s%C(auto,red)% gD% D
[pager]
blame = delta
diff = delta
log = delta
reflog = delta
show = delta
[delta]
plus-style = "syntax #012800"
minus-style = "syntax #340001"
syntax-theme = Monokai Extended
navigate = true
hyperlinks = true
[interactive]
diffFilter = delta --color-only
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[push]
autoSetupRemote = yes