-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
41 lines (41 loc) · 928 Bytes
/
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
[commit]
template = ~/.git-commit-message
gpgSign = true
[tag]
gpgSign = true
[init]
templatedir = ~/.git-templates
defaultBranch = "main"
[branch]
autosetuprebase = always
[core]
excludesfile = ~/.gitignore
autocrlf = input
untrackedcache = true
[github]
user = jidicula
[merge]
conflictstyle=diff3
[pull]
rebase = true
[diff]
# Use the slower but better patience diff algorithm
algorithm = patience
# Use new diff algorithm to make e.g. function diffs look better.
compactionheuristic = true
[help]
autocorrect = prompt
[push]
autoSetupRemote = true
# default user email and key
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[include]
path = ~/.gitconfig-personal
[includeIf "gitdir:**/work*/**/.git"]
path = ~/.gitconfig-work
[includeIf "gitdir:**/workspaces/**/.git"]
path = ~/.gitconfig-codespaces