-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
25 lines (25 loc) · 714 Bytes
/
.gitconfig
File metadata and controls
25 lines (25 loc) · 714 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
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Sascha Brechenmacher
email = sascha.brechenmacher@1und1.de
[core]
excludesfile = /Users/sbrech/.gitignore_global
[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
[commit]
template = /Users/sbrech/.stCommitMsg
gpgSign = false
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[gc]
autoDetach = false
[pull]
rebase = false