-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig.tmpl
More file actions
83 lines (63 loc) · 1.27 KB
/
dot_gitconfig.tmpl
File metadata and controls
83 lines (63 loc) · 1.27 KB
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
76
77
78
79
80
81
82
83
[advice]
addEmptyPathspec = false
pushNonFastForward = false
statusHints = false
[alias]
undo = reset --soft HEAD^
[branch]
sort = -committerdate
[color]
ui = auto
[core]
attributesfile = ~/.gitattributes
compression = 9
excludesfile = ~/.gitignore
preloadindex = true
whitespace = error
[diff]
colorMoved = default
context = 3
interHunkContext = 10
renames = copies
[diff "lockfile"]
textconv = echo "Lock file changed - content omitted"
[filter "lfs"]
clean = git-lfs clean -- %f
process = git-lfs filter-process
required = true
smudge = git-lfs smudge -- %f
{{ if eq .chezmoi.hostname "pro-crastinator" }}
[includeIf "gitdir:**"]
path = ~/.gitconfig-github
[includeIf "hasconfig:remote.*.url:git@gitlab.com:**/**"]
path = ~/.gitconfig-gitlab
[includeIf "hasconfig:remote.*.url:https://huggingface.co/**"]
path = ~/.gitconfig-hf
{{ end }}
[init]
defaultBranch = main
[interactive]
singlekey = true
[log]
abbrevCommit = true
[merge]
conflictStyle = zdiff3
[pager]
branch = false
tag = false
[pull]
default = current
rebase = true
[push]
autoSetupRemote = true
default = current
followTags = true
[rebase]
autoStash = true
missingCommitsCheck = warn
[status]
branch = true
showStash = true
showUntrackedFiles = all
[tag]
sort = -taggerdate