-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
75 lines (57 loc) · 1.28 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
; ~/.gitconfig - Git configuration
[user]
name = Ondrej Balaz
email = blami@blami.net
signingkey = 1FCD8C25
[sendemail]
from = Ondrej Balaz <blami@blami.net>
[init]
defaultbranch = main
[core]
; Always exclude globally ignored files
excludesfile = ~/.gitignore_global
; DO NOT mess with CRLF on Windows
autocrlf = false
[color]
filemode = false
branch = auto
diff = auto
interactive = auto
status = auto
ui = auto
pager = true
[commit]
template = ~/.gitmessage
[merge]
tool = git-mergetool
[mergetool "git-mergetool"]
# NOTE: git-mergetool uses nvimdiff and fallbacks to vimdiff
cmd = ~/bin/mergetool $LOCAL $REMOTE $MERGED
[rebase]
autosquash = true
[push]
default = current
[pull]
ff = only
[pack]
packSizeLimit = 2g
[http]
cookiefile = ~/.gitcookies
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[url "git+ssh://blami@git.launchpad.net/"]
insteadof = lp:
[include]
path = ~/.gitaliases
; Include local configuration file
path = ~/.gitconfig_local
; Include ~/.gitdirs file
; NOTE: ~/.gitdirs contains ONLY includeIf statemens pointing to a
; per-directory configs:
; [includeIf "gitdir:~/ws/work/"]
; path = ~/.gitconfig_work
path = ~/.gitdirs
; vim:set ft=gitconfig: