this repo has no description
1[advice]
2 addIgnoredFile = false
3
4[alias]
5 a = add
6
7 b = switch
8 bn = checkout -b
9
10 c = clone
11
12 cam = !git commit -a -m "\""$*"\"" && :
13 camp = !git commit -a -m "\""$*"\"" && git push && :
14 cm = !git commit -m "\""$*"\"" && :
15 cmp = !git commit -m "\""$*"\"" && git push && :
16
17 cr = codereview
18
19 d = diff
20 dh = diff HEAD
21
22 l = pull --rebase --autostash
23
24 lo = log --all --graph --format='%C(auto)%h %d %s %C(black)%ar/%cr %C(blue)<%an>'
25 los = log --all --graph --simplify-by-decoration --format='%C(auto)%h %d %s %C(black)%ar/%cr %C(blue)<%an>'
26
27 p = push
28
29 s = status
30
31 t = !git tag -m "\""$*"\"" "\""$*"\"" && :
32
33[color "branch"]
34 current = yellow reverse
35 local = yellow
36 remote = green
37
38[color "diff"]
39 meta = yellow bold
40 frag = magenta bold # line info
41 old = red # deletions
42 new = green # additions
43
44[color "status"]
45 added = green
46 changed = yellow
47 untracked = red
48
49[commit]
50 verbose = true
51
52[core]
53 pager = delta
54
55[credential]
56 helper = cache --timeout 21600
57 ; helper = store
58 helper = oauth
59
60[delta]
61 file-decoration-style = none
62 file-style = bold yellow ul
63 line-numbers = true
64 navigate = true
65 side-by-side = true
66 syntax-theme = zenburn
67
68[diff]
69 algorithm = histogram
70 renames = copies
71 colorMoved = plain
72
73[fetch]
74 prune = true
75 pruneTags = true
76
77[filter "lfs"]
78 smudge = git-lfs smudge -- %f
79 process = git-lfs filter-process
80 required = true
81 clean = git-lfs clean -- %f
82
83[http]
84 cookiefile = ~/.config/git/cookies
85
86[init]
87 defaultBranch = master
88
89[interactive]
90 diffFilter = delta --color-only
91
92[log]
93 date = iso
94
95[merge]
96 conflictStyle = zdiff3
97
98[pull]
99 rebase = true
100
101[push]
102 autoSetupRemote = true
103 followtags = true
104
105[rebase]
106 autoStash = true
107 autosquash = true
108 abbreviateCommands = true
109 updateRefs = true
110
111[rerere]
112 enabled = true
113
114[tag]
115 sort = version:refname
116
117
118[url "https://github.com/"]
119 insteadOf = g:
120[url "https://github.com/seankhliao/"]
121 insteadOf = s:
122
123[versionsort]
124 suffix = -
125
126[include]
127 path = local.gitconfig
128
129[includeIf "hasconfig:remote.*.url:https://go.googlesource.com/*"]
130 path = go.gitconfig