-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
456 lines (454 loc) · 14 KB
/
config.js
File metadata and controls
456 lines (454 loc) · 14 KB
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
module.exports = {
globalOptions: [
{
'option': '-h',
'desc': 'Help. global or command specific',
},
{
'option': '--show, -s',
'desc': 'Show git commands to be executed. Doesn\'t execute them',
},
{
'option': '--version, -v',
'desc': 'Show current gite version',
},
],
commandList: [
{
'cmd': 'branch-copy',
'args': '<new_branch> [source]',
'desc': 'Create and switch to a new branch as a copy of current or source branch (if provided)',
'longDesc' : {
'required': [
'<new_branch>:\t desired name of the new (copy) branch',
],
'optional': [
'[source]:\t source branch name. May refer to other repo branch using remote/branch_name.',
],
'samples': [
'master2 upstream/master',
'test_branch',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'checkout -b {{$new_branch$}} {{$source$}}',
},
],
},
{
'cmd': 'branch-new',
'args': '<new_branch> [source]',
'desc': 'Create and switch to a new branch as a copy of current or source branch (if provided)',
'longDesc' : {
'required': [
'<new_branch>:\t desired name of the new branch',
],
'optional': [
'[source]:\t source branch name. May refer to other repo branch using remote/branch_name.',
],
'samples': [
'master2 upstream/master',
'test_branch',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'checkout -b {{$new_branch$}} {{$source$}}',
},
],
},
{
'cmd': 'backup',
'args': '<new_branch> [source]',
'desc': 'Create and keep aside (don\'t switch) a new branch as a copy of current or source branch (if provided)',
'longDesc' : {
'required': [
'<new_branch>:\t desired name of the new branch',
],
'optional': [
'[source]:\t source branch name. May refer to other repo branch using remote/branch_name.',
],
'samples': [
'master2 upstream/master',
'test_branch',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'checkout -b {{$new_branch$}} {{$source$}}',
},
{
'newcmd': 'git',
'args': 'checkout -',
},
],
},
{
'cmd': 'last-change',
'desc': 'BETA- shows changes from last commit',
'execCommands': [
{
'newcmd': 'git',
'args': 'log -p',
},
],
},
{
'cmd': 'change-file',
'args': '<path> <tree>',
'desc': 'Changes file to given branch/commit (tree) state. Changes fetched are unstaged.',
'longDesc' : {
'required': [
'<path>:\t path to file',
'<tree>:\t branch or commit id. From which file state is desired.',
],
'samples': [
'./text.txt upstream/master',
'./text.txt develop',
'index.js 5ac1d4',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'checkout {{$tree$}} -- {{$path$}}',
},
],
},
{
'cmd': 'blame',
'args': '<path>',
'desc': 'Shows last revision details for each line with commit id, author and date of change.',
'longDesc' : {
'required': [
'<path>:\t path to file',
],
'samples': [
'index.js',
'src/main.py',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'annotate {{$path$}}',
},
],
},
{
'cmd': 're-commit',
'desc': 'Add current changes (staged/unstaged) to last commit.',
'longDesc' : {
'samples': [
' ',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'commit -a --amend -C HEAD -n',
},
],
},
{
'cmd': 'discard-commits',
'desc': 'Discard all local commits on this branch, to make the local branch identical to the `upstream` of this branch',
'longDesc' : {
'samples': [
' ',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'reset --hard @{u}',
},
],
},
{
'cmd': 'discard-all-changes',
'desc': 'Discard all local changes. Changes are UNRECOVERABLE',
'longDesc' : {
'samples': [
' ',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'reset --hard',
},
],
},
{
'cmd': 'discard-file-changes',
'args': '<path>',
'desc': 'Discard all local changes to provided file. Changes are UNRECOVERABLE',
'longDesc' : {
'required': [
'<path>:\t path to file',
],
'samples': [
'./text.js',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'checkout HEAD -- {{$path$}}',
},
],
},
{
'cmd': 'rm-commit',
'args': '<comm_id>',
'desc': 'Removes the provided commit from current tree. WARNING: use only if commit(s) after this are not dependent on this commit',
'longDesc' : {
'required': [
'<comm_id>:\t sha1 commit id.',
],
'samples': [
'3ar454',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'rebase -p --onto {{$comm_id$}}^ {{$comm_id$}}',
},
],
},
{
'cmd': 'undo',
'desc': 'shelves all uncommited changes. stashes them.',
'longDesc' : {
'samples': [
' ',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'stash',
},
],
},
{
'cmd': 'redo',
'desc': 'applies last shelved changes. Removes from shelf',
'longDesc' : {
'samples': [
' ',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'stash pop stash@{0}',
},
],
},
{
'cmd': 'change-msg',
'args': '<msg>',
'desc': 'changes message of last commit',
'longDesc' : {
'required': [
'<msg>:\t new message',
],
'samples': [
'\'new commit message\'',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'commit --amend -m {{$msg$}} -n',
},
],
},
{
'cmd': 'rm-file-last-commit',
'args': '<path>',
'desc': 'remove changes of file from last commit',
'longDesc' : {
'required': [
'<path>:\t path to file',
],
'samples': [
'./text.txt',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'checkout HEAD^ {{$path$}}',
},
{
'newcmd': 'git',
'args': 'add {{$path$}}',
},
{
'newcmd': 'git',
'args': 'commit --amend --no-edit -n',
},
],
},
{
'cmd': 'rm-branch',
'args': '<branch>',
'desc': 'remove branch from local',
'longDesc' : {
'required': [
'<branch>:\t branch',
],
'samples': [
'test',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'branch -D {{$branch$}}',
},
],
},
{
'cmd': 'rm-branch-remote',
'args': '<remote> <branch>',
'desc': 'remove branch from provided remote',
'longDesc' : {
'required': [
'<remote>:\t remote',
'<branch>:\t branch name',
],
'samples': [
'origin test',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'push {{$remote$}} --delete {{$branch$}}',
},
],
},
{
'cmd': 'squash',
'args': '<n>',
'desc': 'squashes (combines) last \'n\' commits with self generated squash message',
'longDesc' : {
'required': [
'<n>:\t last n commits to be combined',
],
'samples': [
'3',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'reset --hard HEAD~{{$n$}}',
},
{
'newcmd': 'git',
'args': 'merge --squash HEAD@{1}',
},
{
'newcmd': 'git',
'args': 'commit -n --no-edit',
},
],
},
{
'cmd': 'squash-all',
'desc': 'squashes (combines) all unpushed commits with self generated squash message',
'longDesc' : {
'samples': [
' ',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'reset --hard @{u}',
},
{
'newcmd': 'git',
'args': 'merge --squash HEAD@{1}',
},
{
'newcmd': 'git',
'args': 'commit --no-edit -n',
},
],
},
{
'cmd': 'rm-file',
'args': '<path>',
'desc': 'remove file from git. Doesn\'t delete it',
'longDesc' : {
'required': [
'<path>:\t path to file',
],
'samples': [
'./text.txt',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'rm --cached {{$path$}}',
},
],
},
{
'cmd': 'clone-pr',
'args': '<remote> <pr_no> <branch>',
'desc': 'checkouts to pull request provided to a new branch.',
'longDesc' : {
'required': [
'<remote>:\t fork to which PR is raised.',
'<pr_no>:\t PR number',
'<branch>:\t new branch name.',
],
'samples': [
'upstream 2134 pr_branch',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'fetch {{$remote$}} pull/{{$pr_no$}}/head:{{$branch$}}',
},
{
'newcmd': 'git',
'args': 'checkout {{$branch$}}',
},
],
},
{
'cmd': 'search',
'args': '<text>',
'desc': 'search commit with message. shows max 20 results',
'longDesc' : {
'required': [
'<text>:\t text to search for in commit message',
],
'samples': [
'\'fixes\'',
],
},
'execCommands': [
{
'newcmd': 'git',
'args': 'log --max-count=20 --abbrev-commit --grep={{$text$}}',
},
],
},
],
};