-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
34 lines (34 loc) · 877 Bytes
/
.gitconfig
File metadata and controls
34 lines (34 loc) · 877 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
26
27
28
29
30
31
32
33
34
[user]
name = Mirko
email = mpalmer@mpi-inf.mpg.de
[core]
excludesfile = /Users/Mirko/.gitignore_global
precomposeUnicode = true
pager = less -+F -R -+X
[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
[filter "media"]
clean = git media clean %f
smudge = git media smudge %f
required = true
[commit]
template = /Users/Mirko/.stCommitMsg
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[pull]
ff = only
[init]
defaultBranch = master
[merge]
tool = vimdiff
[difftool "vimdiff"]
cmd = vimdiff \"$LOCAL\" \"$REMOTE\"
[mergetool "vimdiff"]
cmd = vimdiff \"$LOCAL\" \"$MERGED\" \"$REMOTE\"