-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
25 lines (25 loc) · 767 Bytes
/
Copy pathgitconfig
File metadata and controls
25 lines (25 loc) · 767 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
[include]
path = ~/.term-config/gituser
[core]
pager = 'bat'
excludesfile = /Users/jamie/.gitignore_global
[commit]
gpgsign = true
[alias]
recommit = !git commit -eF $(git rev-parse --git-dir)/COMMIT_EDITMSG
spull = !git pull && git submodule sync --recursive && git submodule update --init --recursive
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main
[pull]
rebase = false
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/Sourcetree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true