-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivate_dot_gitconfig.tmpl
More file actions
44 lines (44 loc) · 1022 Bytes
/
private_dot_gitconfig.tmpl
File metadata and controls
44 lines (44 loc) · 1022 Bytes
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
[user]
name = {{ .name | quote }}
email = {{ .email | quote }}
{{- if .signGitCommits }}
signingkey = {{ .signingKey }}
{{- end }}
[github]
user = Mezzle
[color]
diff = auto
status = auto
branch = auto
ui = true
[alias]
co = checkout
ff = pull --ff-only
st = status
[push]
default = simple
[core]
excludesfile = ~/.gitignore_global
autocrlf = input
[rerere]
enabled = true
[init]
defaultBranch = main
[pull]
ff = only
[url "ssh://git@github.com/Mezzle"]
insteadOf = https://github.com/Mezzle
[url "ssh://git@github.com/sane-defaults"]
insteadOf = https://github.com/sane-defaults
[url "ssh://git@github.com/Debian"]
insteadOf = https://github.com/Debian
[url "ssh://git@github.com/Flamboyant-Potato"]
insteadOf = https://github.com/Flamboyant-Potato
[url "ssh://git@github.com/GamerPowered"]
insteadOf = https://github.com/GamerPowered
[url "ssh://git@github.com/Majimez"]
insteadOf = https://github.com/Majimez
{{- if .signGitCommits }}
[commit]
gpgsign = true
{{- end }}