blob: 09e88fedd25b7a9de0981b01324a89f99bb221d3 (
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
|
[alias]
l = log --color --graph --format=format:'%C(blue)%h%C(reset) - %C(white)(%ar)%C(reset) %s %C(red)%d%C(reset) %C(bold blue)— %an%C(reset)' --abbrev-commit
lg = log --color --graph -n 15 --format=format:'%C(blue)%h%C(reset) - %C(white)(%ar)%C(reset) %s %C(red)%d%C(reset) %C(bold blue)— %an%C(reset)' --abbrev-commit
lf = log --color --graph --name-status --format=format:'%C(blue)%h%C(reset) - %C(white)(%ar)%C(reset) %s %C(red)%d%C(reset) %C(bold blue)— %an%C(reset)' --abbrev-commit
ll = log --color --graph --all --format=format:'%C(blue)%h%C(reset) - %C(white)(%ar)%C(reset) %s %C(red)%d%C(reset) %C(bold blue)— %an%C(reset)' --abbrev-commit
s = status -s
ss = status
a = add
ai = add -i
p = push
pu = pull
f = fetch
fa = fetch --all
c = commit
dt = difftool
dtg = difftool -g
b = branch
bv = branch -v
bva = branch -va
co = checkout
cb = checkout -b
d = diff --stat
dd = diff
m = merge
ff = merge --ff-only
r = remote
rv = remote -v
rb = rebase
rbi = rebase -i
|