-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
45 lines (42 loc) · 863 Bytes
/
.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
[user]
name = Stanislav Krupoderov
email = [email protected]
[include]
# include aliases
path = ~/.gitalias
[apply]
whitespace = fix
[push]
default = simple
[branch]
autosetupmerge = true
[merge]
renameLimit = 999999
tool = ediff
[mergetool]
prompt = false
[mergetool.ediff]
cmd = emacs -q --eval \" \
(progn \
(setq ediff-quit-hook 'kill-emacs) \
(if (file-readable-p \\\"$BASE\\\") \
(ediff-merge-files-with-ancestor \\\"$LOCAL\\\" \\\"$REMOTE\\\" \
\\\"$BASE\\\" nil \\\"$MERGED\\\") \
(ediff-merge-files \\\"$LOCAL\\\" \\\"$REMOTE\\\" nil \\\"$MERGED\\\")))\"
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[pull]
rebase = true
ff = only
[rebase]
autoStash = true
autosquash = true
[color]
ui = auto
[diff]
tool = vimdiff
[difftool]
prompt = false