forked from adam8157/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
55 lines (54 loc) · 1.04 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
[user]
name = Adam Lee
email = adam8157@gmail.com
signingkey = 2365E9762F39D84D
[color]
branch = auto
diff = auto
grep = auto
interactive = auto
status = auto
[push]
default = simple
[alias]
a = add
ai = add -i
b = branch
c = commit
ca = commit -a
co = checkout
cp = cherry-pick
d = difftool -M
dc = difftool -M --cached
fp = format-patch
l = log
lg = log --graph
lp = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen%cr %C(bold blue)<%an>%Creset'
m = mergetool
p = push
r = rebase
ri = rebase -i
rs = !git ls-files -d |xargs git checkout --
s = status
t = tag
u = pull
um = pull --no-ff
up = remote update --prune
ur = pull --rebase
ut = rm -r --cached
w = show
wc = whatchanged -1
bisect-fixed = bisect bad
bisect-unfixed = bisect good
[diff]
tool = vimdiff
[merge]
tool = vimdiff
[sendemail]
confirm = always
suppresscc = self
thread = true
chainreplyto = false
bcc = adam8157@gmail.com
smtpserver = /usr/bin/msmtp
smtpserveroption = "--account=gmail"