-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
57 lines (42 loc) · 937 Bytes
/
gitconfig
File metadata and controls
57 lines (42 loc) · 937 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
45
46
47
48
49
50
51
52
53
54
55
56
57
[core]
pager = delta
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = {{HOME_DIR}}/.gitignore_global
autocrlf = input
[user]
email = {{EMAIL}}
name = Mike Hennessy
signingkey = {{SIGNING_KEY}}
[gpg]
format = ssh
[gpg "ssh"]
allowedSignersFile = ~/.ssh/allowed_signers
[github]
user = {{GITHUB_USERNAME}}
[credential]
helper = {{CREDENTIAL_HELPER}}
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[push]
default = current
[init]
defaultBranch = main
[pull]
rebase = true
[commit]
template = {{HOME_DIR}}/.git-commit-template
gpgsign = true
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[includeIf "hasconfig:remote.*.url:git@github.com:primeft/**"]
path = .gitconfig-prime