-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
62 lines (47 loc) · 1022 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[user]
name = Alexey Terekhov
email = alexey.terekhov.tap349@gmail.com
signingkey = ACFDF508F789A2CB
[merge]
summary = true
verbosity = 1
tool = gvimdiff
[mergetool "fugitive"]
cmd = "mvim -f --nomru -c 'Gvdiff' $MERGED"
keepBackup = false
prompt = false
[mergetool "gvimdiff"]
cmd = "mvim -f --nomru -c 'Gvdiff' $MERGED"
keepBackup = false
prompt = false
[diff]
tool = default-difftool
[difftool]
prompt = false
[difftool "default-difftool"]
cmd = mvim -d -f --nomru $LOCAL $REMOTE
[alias]
amend = commit --amend --no-edit
d = difftool
# https://github.com/aanand/git-up
up = pull --rebase --autostash
[git-up "bundler"]
check = true
[core]
autocrlf = input
editor = mvim -f --nomru
pager = less -+X -+F
[push]
default = current
[color]
ui = true
[credential]
helper = osxkeychain
[commit]
gpgsign = true
[gpg]
program = gpg
# https://stackoverflow.com/a/60323360/3632318
# Enforce SSH
[url "ssh://git@github.com/"]
insteadOf = https://github.com/