-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
43 lines (43 loc) · 843 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
33
34
35
36
37
38
39
40
41
42
43
[user]
# BEGIN protected
#signingkey = 0xB2F27B7221DCD363
# END protected
# BEGIN public
#email = [email protected]
#name = Nicki Křížek
#signingkey = 0x01623B9B652A20A7
# END public
[gpg]
program = gpg2
[commit]
# BEGIN protected
#gpgsign = false
# END protected
# BEGIN public
#gpgsign = true
# END public
[core]
excludesfile = ~/.gitignore
[log]
date = iso
[rebase]
autoSquash = True
[diff]
tool = kitty
guitool = kitty.gui
[difftool]
prompt = false
trustExitCode = true
[difftool "kitty"]
cmd = kitty +kitten diff $LOCAL $REMOTE
[difftool "kitty.gui"]
cmd = kitty kitty +kitten diff $LOCAL $REMOTE
[checkout]
defaultRemote = origin
[rerere]
enabled = true
[alias]
re = config --local rerere.enabled true
rd = config --local rerere.enabled false
rs = config --local --get rerere.enabled
pushf = push --force-with-lease