-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_gitconfig
50 lines (38 loc) · 914 Bytes
/
dot_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
[user]
name = Rojo
email = [email protected]
signingkey = 523CE7AD
[commit]
gpgsign = true
[gpg]
program = gpg
[core]
excludesfile = ~/.gitignore
quotepath = false
editor = subl -n -w
autocrlf = input
hooksPath = /Users/rojo/.git/hooks
filemode = false
[pull]
rebase = true
[branch]
autosetuprebase = always
[color]
ui = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[push]
default = matching
[mergetool "sublimerge"]
cmd = subl -n --wait \"$REMOTE\" \"$BASE\" \"$LOCAL\" \"$MERGED\" --command \"sublimerge_diff_views\"
trustExitCode = false
[diff]
tool = sublimerge
[difftool "sublimerge"]
cmd = subl -n --wait \"$REMOTE\" \"$LOCAL\" --command \"sublimerge_diff_views {\\\"left_read_only\\\": true, \\\"right_read_only\\\": true}\"
tool = opendiff
[init]
defaultBranch = main