-
Notifications
You must be signed in to change notification settings - Fork 8
/
_s.sh
182 lines (182 loc) · 5.24 KB
/
_s.sh
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
r_svn[init]="svn co"
r_svn[i]="svn co"
r_svn[empty]="svnadmin create"
r_svn[e]="svnadmin create"
r_svn[update]="svn update"
r_svn[u]="svn update"
r_svn[add]="svn add"
r_svn[a]="svn add"
r_svn[remove]="svn rm"
r_svn[r]="svn rm"
r_svn[rf]="svn rm --force"
r_svn[remove-force]="svn rm --force"
r_svn[move]="svn mv"
r_svn[m]="svn mv"
r_svn[who]="svn blame"
r_svn[w]="svn blame"
r_svn[commit]="svn update ; svn commit"
r_svn[c]="svn update ; svn commit"
r_svn[cq]="svn commit"
r_svn[commit-quick]="svn commit"
r_svn[diff]="svn diff"
r_svn[d]="svn diff"
r_svn[here]="svn info"
r_svn[h]="svn info"
r_svn[ss]="svn status --quiet"
r_svn[status-short]="svn status --quiet"
r_svn[sl]="svn status --verbose"
r_svn[status-long]="svn status --verbose"
r_svn[sf]="svn status --update"
r_svn[status-full]="svn status --update"
r_svn[sff]="svn status -uv"
r_svn[status-veryfull]="svn status -uv"
r_svn[visualise]="svn ls"
r_svn[v]="svn ls"
r_svn[ls]="svn log --quiet"
r_svn[log-short]="svn log --quiet"
r_svn[log]="svn log"
r_svn[l]="svn log"
r_svn[ll]="svn log --verbose"
r_svn[log-long]="svn log --verbose"
r_svn[forget]="svn rm --keep-local"
r_svn[f]="svn rm --keep-local"
r_svn[jump]="svn -r"
r_svn[j]="svn -r"
r_git[init]="git clone"
r_git[i]="git clone"
r_git[empty]="git init"
r_git[e]="git init"
r_git[update]="git pull"
r_git[u]="git pull"
r_git[add]="git add --intent-to-add --all -v"
r_git[a]="git add --intent-to-add --all -v"
r_git[gp]="git add --patch --all"
r_git[stage-patch]="git add --patch --all"
r_git[remove]="git rm"
r_git[r]="git rm"
r_git[rf]="git rm --force"
r_git[remove-force]="git rm --force"
r_git[move]="git mv"
r_git[m]="git mv"
r_git[who]="git blame"
r_git[w]="git blame"
r_git[commit]="git pull ; git commit -a && git push <branch>"
r_git[c]="git pull ; git commit -a && git push <branch>"
r_git[cq]="git commit -a && git push <branch>"
r_git[commit-quick]="git commit -a && git push <branch>"
r_git[ca]="git pull ; git add -A ; git commit"
r_git[commit-all]="git pull ; git add -A ; git commit"
r_git[caq]="git add -A ; git commit"
r_git[commit-all-quick]="git add -A ; git commit"
r_git[cl]="git commit -a"
r_git[commit-local]="git commit -a"
r_git[cql]="git commit -a"
r_git[commit-quick-local]="git commit -a"
r_git[query]="git whatchanged"
r_git[q]="git whatchanged"
r_git[transfer]="git push <branch>"
r_git[t]="git push <branch>"
r_git[n]="git_push_tag"
r_git[new-tag]="git_push_tag"
r_git[nl]="git_push_tag -l"
r_git[new-tag-local]="git_push_tag -l"
r_git[diff]="git diff"
r_git[d]="git diff"
r_git[ds]="git diff --cached"
r_git[diff-staged]="git diff --cached"
r_git[here]="git_url"
r_git[h]="git_url"
r_git[ss]="git --no-pager diff --name-only"
r_git[status-short]="git --no-pager diff --name-only"
r_git[b]="git branch -v"
r_git[branch-stat]="git branch -v"
r_git[bl]="git branch -va"
r_git[branch-stat-long]="git branch -va"
r_git[br]="git branch -vr"
r_git[branch-stat-remote]="git branch -vr"
r_git[visualise]="git ls-files"
r_git[v]="git ls-files"
r_git[ls]="git log --oneline --graph"
r_git[log-short]="git log --oneline --graph"
r_git[log]="git log"
r_git[l]="git log"
r_git[ll]="git log --stat"
r_git[log-long]="git log --stat"
r_git[lf]="git log --patch"
r_git[log-full]="git log --patch"
r_git[lff]="git log --patch --full-diff"
r_git[log-veryfull]="git log --patch --full-diff"
r_git[print-tags]="git show-ref --tags --dereference | sed -n 's/\\^{}//p'"
r_git[p]="git show-ref --tags"
r_git[od]="git show"
r_git[object-dump]="git show"
r_git[forget]="git rm -r --cached"
r_git[f]="git rm -r --cached"
r_git[fp]="git reset --patch HEAD"
r_git[forget-patch]="git reset --patch HEAD"
r_git[jump]="git_smart_jump"
r_git[j]="git_smart_jump"
r_git[z]="git reset HEAD^"
r_git[undo]="git reset HEAD^"
r_git[x]="git git remote add"
r_git[extra-origin]="git git remote add"
r_hg[init]="hg clone"
r_hg[i]="hg clone"
r_hg[empty]="hg init"
r_hg[e]="hg init"
r_hg[update]="hg pull -u"
r_hg[u]="hg pull -u"
r_hg[add]="hg add"
r_hg[a]="hg add"
r_hg[remove]="hg remove"
r_hg[r]="hg remove"
r_hg[rf]="hg remove --force"
r_hg[remove-force]="hg remove --force"
r_hg[move]="hg mv"
r_hg[m]="hg mv"
r_hg[who]="hg annotate"
r_hg[w]="hg annotate"
r_hg[commit]="hg pull -u ; hg commit && hg push"
r_hg[c]="hg pull -u ; hg commit && hg push"
r_hg[cq]="hg commit && hg push"
r_hg[commit-quick]="hg commit && hg push"
r_hg[ca]="hg pull -u ; hg commit --addremove"
r_hg[commit-all]="hg pull -u ; hg commit --addremove"
r_hg[caq]="hg commit --addremove"
r_hg[commit-all-quick]="hg commit --addremove"
r_hg[cl]="hg pull -u ; hg commit"
r_hg[commit-local]="hg pull -u ; hg commit"
r_hg[cql]="hg commit"
r_hg[commit-quick-local]="hg commit"
r_hg[query]="hg outgoing"
r_hg[q]="hg outgoing"
r_hg[transfer]="hg push"
r_hg[t]="hg push"
r_hg[diff]="hg diff"
r_hg[d]="hg diff"
r_hg[here]="hg info"
r_hg[h]="hg info"
r_hg[ss]="hg list"
r_hg[status-short]="hg list"
r_hg[b]="hg branches"
r_hg[branch-stat]="hg branches"
r_hg[visualise]="hg manifest"
r_hg[v]="hg manifest"
r_hg[ls]="hg log"
r_hg[log-short]="hg log"
r_hg[log]="hg log"
r_hg[l]="hg log"
r_hg[ll]="hg log"
r_hg[log-long]="hg log"
r_hg[lf]="hg log -p"
r_hg[log-full]="hg log -p"
r_hg[print-tags]="hg tags"
r_hg[p]="hg tags"
r_hg[od]="hg "
r_hg[object-dump]="hg "
r_hg[forget]="hg forget"
r_hg[f]="hg forget"
r_hg[jump]="hg update -r"
r_hg[j]="hg update -r"
r_hg[z]="hg rollback"
r_hg[undo]="hg rollback"