blob: 355019942c2a7d6d369163ea51b79e5488ebf5d2 (
plain)
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
|
[user]
email = [email protected]
name = Guangxiong Lin
signingkey = DC290711AFF905FA
[commit]
gpgsign = true
[gpg]
program = gpg
[merge]
tool = vimdiff
[diff]
tool = vimdiff
[core]
excludesFile = ~/.gitignore
attributesfile = ~/.gitattributes
[alias]
ap = add --patch
ci = commit
cia = commit --amend
br = branch
co = checkout
st = status
stsb = status --short --branch
df = diff
dfc = diff --cached
dt = difftool
mt = mergetool
who = blame
rmc = rm --cached
untrack = rm --cached
lo = log --oneline --graph --decorate
loa = log --oneline --graph --decorate --all
lol = log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset'
lols = log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --stat
lola = log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --all
cp = cherry-pick
cpa = cherry-pick --abort
cpc = cherry-pick --continue
rb = rebase
rbi = rebase -i
rbc = rebase --continue
rba = rebase --abort
rbs = rebase --skip
|