forked from rasendubi/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
79 lines (67 loc) · 1.39 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
74
75
76
77
78
79
[user]
name = Alexey Shmalko
email = rasen.dubi@gmail.com
[sendemail]
smtpencryption = ssl
smtpserver = smtp.gmail.com
smtpuser = rasen.dubi@gmail.com
smtpserverport = 465
[color]
ui = true
[core]
editor = vim
[push]
default = simple
[pull]
ff = only
[rerere]
enabled = true
[user]
signingkey = EB3066C3
[gpg]
program = gpg2
[push]
gpgSign = if-asked
[alias]
cl = clone
gh-cl = gh-clone
cr = cr-fix
p = push
pl = pull
f = fetch
fa = fetch --all
a = add
ap = add -p
d = diff
dl = diff HEAD~ HEAD
ds = diff --staged
l = log --show-signature
l1 = log -1
lp = log -p
c = commit
ca = commit --amend
co = checkout
cb = checkout -b
cm = checkout origin/master
de = checkout --detach
fco = fetch-checkout
br = branch
s = status
re = reset --hard
dp = push origin HEAD:refs/drafts/master
pp = push origin HEAD:refs/publish/master
r = rebase
rc = rebase --continue
ri = rebase -i
m = merge
t = tag
su = submodule update --init --recursive
bi = bisect
bg = bisect good
bb = bisect bad
bis = bisect start
bir = bisect reset
[url "git@github.com:"]
pushInsteadOf = https://github.com/
[url "git://github.com/ghc/packages-"]
insteadOf = git://github.com/ghc/packages/