-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
53 lines (42 loc) · 1.05 KB
/
Copy path.gitconfig
File metadata and controls
53 lines (42 loc) · 1.05 KB
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
# Sanitized template — managed by ~/dotfiles
#
# Per-machine identity (name, email, signing keys) lives in ~/.gitconfig.local
# and is git-included at the bottom of this file. ~/.gitconfig.local is
# gitignored. To set it up:
#
# cat > ~/.gitconfig.local <<'EOF'
# [user]
# name = Your Name
# email = you@example.com
# EOF
[user]
name = ****
email = ****@****
[core]
autocrlf = input
quotepath = false
excludesfile = ~/.gitignore_global
[credential]
helper = osxkeychain
[color]
ui = auto
[push]
default = simple
[pull]
rebase = false
[init]
defaultBranch = main
[filter "lfs"]
clean = git lfs clean -- %f
smudge = git lfs smudge -- %f
process = git lfs filter-process
required = true
[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
# Per-machine identity / overrides — keep last so it wins.
[include]
path = ~/.gitconfig.local