-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
73 lines (64 loc) · 1.24 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
62
63
64
65
66
67
68
69
70
71
72
73
[color]
diff = true
grep = true
status = true
ui = true
[log]
decorate = true
[push]
default = simple
[alias]
ci = commit
cia = commit --amend
cis = commit -S
cias = commit --amend -S
br = branch
co = checkout
cb = checkout -b
au = add -u
st = status --short
rh = reset --hard
pr = pull --rebase
sync = pull --rebase upstream master
dc = diff --cached
dt = difftool
dtc = difftool --cached
sub = submodule
noff = merge --no-ff
sqsh = merge --squash
slog = log --show-signature
tree = log --graph --pretty=oneline --abbrev-commit
[core]
pager = less -+$LESS -FRX
editor = mvim -f
quotePath = false
[user]
name = Ilya Kowalewski
email = [email protected]
signingkey = B26D0E615F3ACB767913C5BAFF6A1713507CD7A5
[gpg]
program = /usr/local/bin/gpg
[credential]
helper =
[init]
defaultBranch = master
[diff]
tool = vimdiff
[difftool]
prompt = false
[url "[email protected]:~"]
insteadOf = srht:
pushInsteadOf = srht:
[url "[email protected]:"]
insteadOf = gl:
pushInsteadOf = gl:
[url "[email protected]:"]
insteadOf = gh:
pushInsteadOf = gh:
[url "[email protected]:coingaming/"]
insteadOf = yolo:
pushInsteadOf = yolo:
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true