-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
61 lines (49 loc) · 1.52 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
# -----------------------------------------------------------------------------
# Matjaž's dotfiles Git configuration file
#
# Copyright (c) 2015-2016, Matjaž Guštin <[email protected]> matjaz.it
# This source code form is part of the "Matjaž's dotfiles" project and is
# subject to the terms of the BSD 3-clause license as expressed in the
# LICENSE.md file found in the top-level directory of this distribution and at
# http://directory.fsf.org/wiki/License:BSD_3Clause
# -----------------------------------------------------------------------------
[user]
name = Matjaž
email = [email protected]
signingkey = CE32DC1E
[core]
excludesfile = ~/.gitignore_global
editor = emacsclient -t -a ''
[difftool "sourcetree"]
cmd = /Applications/DiffMerge.app/Contents/MacOS/DiffMerge --nosplash \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/DiffMerge.app/Contents/MacOS/DiffMerge --merge --result=\"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\"
trustExitCode = true
[color]
ui = true
[format]
pretty = %Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset
graph = true
[log]
abbrevCommit = true
[credential]
helper = osxkeychain
[difftool]
prompt = false
[diff]
tool = diffmerge
[mergetool]
keepBackup = false
[merge]
tool = diffmerge
conflictstyle = diff3
[push]
default = simple
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
[alias]
unstage = reset HEAD --
discard = checkout --