-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitconfig
51 lines (44 loc) · 1.03 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
[user]
name = Dmitry Ilyin
email = [email protected]
[alias]
co = checkout
ci = commit
st = status
br = branch
hist = log --all --graph --pretty=format:'%Cred%h%Creset %C(bold blue)%an%Creset :%C(yellow)%d%Creset %s %Cgreen(%cr) %Creset' --abbrev-commit
type = cat-file -t
dump = cat-file -p
[color]
ui = 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
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[credential]
helper = cache --timeout=100000
[pull]
rebase = false
[sendemail]
confirm = auto
smtpServer = smtp.gmail.com
smtpServerPort = 587
smtpEncryption = tls
smtpUser = [email protected]
[credential]
helper = store
[includeIf "gitdir:~/git/work/"]
path = ~/git/work/.gitconfig
[includeIf "gitdir:~/git/OpenIPC/"]
path = ~/git/OpenIPC/.gitconfig