-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
67 lines (53 loc) · 1.08 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
[core]
editor = code --wait
pager = delta
autocrlf = input
excludesfile = /Users/brett/.gitignore_global
[init]
defaultBranch = main
[user]
name = Brett Epps
email =
[push]
default = simple
[pull]
rebase = true
[interactive]
diffFilter = delta --color-only
[diff]
tool = bc3
renameLimit = 1000
colorMoved = default
external = difft
[difftool]
prompt = false
bc3 = trustExitCode
[merge]
tool = bc3
conflictstyle = diff3
[mergetool]
prompt = false
bc3 = trustExitCode
keepBackup = false
[difftool "sourcetree"]
cmd = /usr/local/bin/bcomp \"$LOCAL\" \"$REMOTE\"
path = -ro
[mergetool "sourcetree"]
cmd = /usr/local/bin/bcomp \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\"
trustExitCode = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[advice]
detachedHead = false
skippedCherryPicks = false
[sequence]
editor = interactive-rebase-tool
[delta]
navigate = true # use n and N to move between diff sections
[include]
path = ~/.gitconfig.user
[checkout]
defaultRemote = origin