-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
87 lines (77 loc) · 2.17 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
80
81
82
83
84
85
86
87
[user]
name = Jason Laster
email = [email protected]
[credential]
helper = osxkeychain
[mozreview]
nickname = jlast
[alias]
a = add -p
ac = !git add -p && git commit --amend -n --no-edit
b = branch
ba = branch -a
bc = rev-parse --abbrev-ref HEAD
bd = branch -D
br = branch -r
ci = commit --verbose
cia = commit --amend --verbose --no-edit -n
acia = !git add . && git commit --amend --no-edit -n
cim = commit -n -m
cl = clean
clf = clean -f
co = checkout
cob = checkout -b
cop = checkout -p
cot = checkout --track
cp = cherry-pick
cpa = cherry-pick --abort
cpc = cherry-pick --continue --no-verify
d = diff
ds = diff --stat
dc = diff --cached
dcs = diff --cached --stat
dm = diff master
dms = diff master --stat
f = fetch
fp = format-patch --stdout
g = grep --line-number -p -A2
l = log --graph --decorate
lp = log -p --date=short
lpj = log -p --date=short --author jlaster HEAD~20..HEAD
lo = log --oneline
ls = log --stat
lh = log --date=short --pretty=oneline HEAD~100..HEAD
lhs = log --date=short --stat HEAD~100..HEAD
lhj = log --date=short --author jlaster --stat HEAD~20..HEAD
rpull = pull --rebase
r = rebase
rc = rebase --continue
rs = rebase --abort
ra = rebase --abort
ri = rebase -i
rih2 = rebase -i HEAD~2
rih3 = rebase -i HEAD~3
rih4 = rebase -i HEAD~4
rih5 = rebase -i HEAD~5
rih10 = rebase -i HEAD~10
rih = rebase -i~HEAD~10
re = reset
reh = reset HEAD
rehh = reset HEAD~1 --hard
rmc = rm --cached
sh = show --
shs = log -1 --stat
st = status
stm = status --untracked=no
s = stash
sa = stash apply
pttw = t push-to-try ../../fx-team -b do -p linux,macosx64,win32 -u mochitest-dt,mochitest-e10s-devtools-chrome -t none
ptt = t push-to-try ../fx-team -b do -p linux,macosx64,win32 -u mochitest-dt,mochitest-e10s-devtools-chrome -t none
hgp = "show --binary --find-renames --format=\"# HG changeset patch%n# User %an <%ae>%n%B\" -U8"
[core]
pager = less -r
editor = /usr/bin/vim
[color]
ui = true
[cinnabar]
helper = /Users/jlaster/src/moz/git-cinnabar/git-cinnabar-helper