-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
Default.sublime-commands
559 lines (557 loc) · 13.7 KB
/
Default.sublime-commands
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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
[
{
"caption": "Preferences: GitSavvy Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/GitSavvy/GitSavvy.sublime-settings",
"default": "// Settings in here override those in \"GitSavvy/GitSavvy.sublime-settings\",\n\n{\n\t$0\n}\n"
}
},
{
"caption": "Preferences: GitSavvy Project Settings",
"command": "gs_edit_project_settings"
},
{
"caption": "Preferences: GitSavvy Key Bindings",
"command": "gs_edit_settings",
"args": {
"base_file": "${packages}/GitSavvy/Default (${platform}).sublime-keymap"
}
},
{
"caption": "git: diff current file inline",
"command": "gs_inline_diff"
},
{
"caption": "git: diff current file inline (cached)",
"command": "gs_inline_diff",
"args": { "cached": true }
},
{
"caption": "git: quick stage",
"command": "gs_quick_stage"
},
{
"caption": "git: edit and stage diff",
"command": "gs_stage_diff"
},
{
"caption": "git: quick commit",
"command": "gs_quick_commit"
},
{
"caption": "git: quick stage current file and commit",
"command": "gs_quick_stage_current_file_commit"
},
{
"caption": "git: fixup from stage",
"command": "gs_fixup_from_stage"
},
{
"caption": "git: quick stage current file and fixup",
"command": "gs_quick_stage_current_file_and_fixup"
},
{
"caption": "git: status",
"command": "gs_show_status"
},
{
"caption": "git: commit",
"command": "gs_commit"
},
{
"caption": "git: commit including unstaged files",
"command": "gs_commit",
"args": { "include_unstaged": true }
},
{
"caption": "git: amend previous commit",
"command": "gs_amend"
},
{
"caption": "git: quick stage current file and amend",
"command": "gs_quick_stage_current_file_and_amend"
},
{
"caption": "git: graph",
"command": "gs_graph",
"args": { "all": true }
},
{
"caption": "git: Repo History",
"command": "gs_graph",
"args": { "all": true }
},
{
"caption": "git: graph current file",
"command": "gs_graph_current_file",
"args": { "all": false }
},
{
"caption": "git: File History",
"command": "gs_graph_current_file",
"args": { "all": false }
},
{
"caption": "git: graph current path",
"command": "gs_graph_current_path",
"args": { "all": false }
},
{
"caption": "git: Path History",
"command": "gs_graph_current_path",
"args": { "all": false }
},
{
"caption": "git: Line History",
"command": "gs_line_history"
},
{
"caption": "git: Pick-axe selection",
"command": "gs_graph_pickaxe"
},
{
"caption": "github: open file on remote",
"command": "gs_github_open_file_on_remote",
"args": { "preselect": true }
},
{
"caption": "github: open issues",
"command": "gs_github_open_issues"
},
{
"caption": "github: open repo",
"command": "gs_github_open_repo"
},
{
"caption": "github: review pull request",
"command": "gs_github_pull_request"
},
{
"caption": "github: set remote for integration",
"command": "gs_github_configure_remote"
},
{
"caption": "github: add fork as remote",
"command": "gs_github_add_fork_as_remote"
},
{
"caption": "github: create repo",
"command": "gs_github_create_repo"
},
{
"caption": "github: create fork",
"command": "gs_github_create_fork"
},
{
"caption": "github: create pull request",
"command": "gs_github_create_pull_request"
},
{
"caption": "gitlab: open file on remote",
"command": "gs_gitlab_open_file_on_remote",
"args": { "preselect": true }
},
{
"caption": "gitlab: open issues",
"command": "gs_gitlab_open_issues"
},
{
"caption": "gitlab: open repo",
"command": "gs_gitlab_open_repo"
},
{
"caption": "gitlab: set remote for integration",
"command": "gs_gitlab_configure_remote"
},
{
"caption": "gitlab: review merge request",
"command": "gs_gitlab_merge_request"
},
{
"caption": "git: remote add",
"command": "gs_remote_add"
},
{
"caption": "git: remote remove",
"command": "gs_remote_remove"
},
{
"caption": "git: remote rename",
"command": "gs_remote_rename"
},
{
"caption": "git: checkout",
"command": "gs_checkout_branch"
},
{
"caption": "git: checkout new branch",
"command": "gs_checkout_new_branch"
},
{
"caption": "git: checkout remote branch as local",
"command": "gs_checkout_remote_branch"
},
{
"caption": "git: checkout current file at commit",
"command": "gs_checkout_current_file_at_commit"
},
{
"caption": "git: rename current branch",
"command": "gs_rename_branch"
},
{
"caption": "git: unset tracking branch",
"command": "gs_unset_tracking_information"
},
{
"caption": "git: fetch",
"command": "gs_fetch"
},
{
"caption": "git: fast-forward branch from upstream",
"command": "gs_ff_update_branch"
},
{
"caption": "git: pull",
"command": "gs_pull"
},
{
"caption": "git: pull with rebase",
"command": "gs_pull",
"args": { "rebase": true }
},
{
"caption": "git: pull from branch",
"command": "gs_pull_from_branch"
},
{
"caption": "git: pull from branch with rebase",
"command": "gs_pull_from_branch",
"args": { "rebase": true }
},
{
"caption": "git: push",
"command": "gs_push"
},
{
"caption": "git: push (force)",
"command": "gs_push",
"args": { "force": true }
},
{
"caption": "git: push (force-with-lease)",
"command": "gs_push",
"args": { "force_with_lease": true }
},
{
"caption": "git: push to existing branch",
"command": "gs_push_to_branch"
},
{
"caption": "git: push to branch name",
"command": "gs_push_to_branch_name"
},
{
"caption": "git: ignore current file",
"command": "gs_ignore"
},
{
"caption": "git: ignore pattern",
"command": "gs_ignore_pattern"
},
{
"caption": "git: assume file unchanged",
"command": "gs_assume_unchanged"
},
{
"caption": "git: restore file assumed unchanged",
"command": "gs_restore_assumed_unchanged"
},
{
"caption": "git: init",
"command": "gs_init"
},
{
"caption": "git: clone",
"command": "gs_clone"
},
{
"caption": "git: clone recursively",
"command": "gs_clone",
"args": { "recursive": true }
},
{
"caption": "git: diff",
"command": "gs_diff"
},
{
"caption": "git: diff cached",
"command": "gs_diff",
"args": { "in_cached_mode": true }
},
{
"caption": "git: diff current file",
"command": "gs_diff",
"args": { "current_file": true }
},
{
"caption": "git: diff current file (cached)",
"command": "gs_diff",
"args": { "in_cached_mode": true, "current_file": true }
},
{
"caption": "git: compare against ...",
"command": "gs_compare_against",
"args": { "target_commit": "HEAD" }
},
{
"caption": "git: compare current file against ...",
"command": "gs_compare_against",
"args": { "target_commit": "HEAD", "current_file": true }
},
{
"caption": "git: blame current file",
"command": "gs_blame"
},
{
"caption": "GitSavvy: reload modules (debug)",
"command": "gs_reload_modules_debug"
},
{
"caption": "git: reflog",
"command": "gs_ref_log"
},
{
"caption": "git: log",
"command": "gs_log"
},
{
"caption": "git: log current branch",
"command": "gs_log_current_branch"
},
{
"caption": "git: log current file",
"command": "gs_log",
"args": { "current_file": true }
},
{
"caption": "git: revert",
"command": "gs_revert_commit"
},
{
"caption": "git: revert --abort",
"command": "gs_revert_abort"
},
{
"caption": "git: revert --continue",
"command": "gs_revert_continue"
},
{
"caption": "git: revert --skip",
"command": "gs_revert_skip"
},
{
"caption": "git: show recent revision of current file",
"command": "gs_show_file_at_commit"
},
{
"caption": "git: show recent commit",
"command": "gs_show_commit",
"args": { "commit_hash": "HEAD" }
},
{
"caption": "git: show current file at commit",
"command": "gs_show_current_file"
},
{
"caption": "git: merge",
"command": "gs_merge"
},
{
"caption": "git: merge --abort",
"command": "gs_merge_abort"
},
{
"caption": "git: merge --continue",
"command": "gs_merge_continue"
},
{
"caption": "git: restart merge for file...",
"command": "gs_restart_merge_for_file"
},
{
"caption": "GitSavvy: help",
"command": "gs_help"
},
{
"caption": "git: generate changelog",
"command": "gs_generate_change_log"
},
{
"caption": "GitSavvy: enable logging",
"command": "gs_start_logging"
},
{
"caption": "GitSavvy: disable logging",
"command": "gs_stop_logging"
},
{
"caption": "GitSavvy: view recorded log",
"command": "gs_view_git_log"
},
{
"caption": "git: tag",
"command": "gs_show_tags"
},
{
"caption": "git: quick tag",
"command": "gs_tag_create"
},
{
"caption": "git: smart tag",
"command": "gs_smart_tag"
},
{
"caption": "git: branch",
"command": "gs_show_branch"
},
{
"caption": "git: rebase",
"command": "gs_show_rebase"
},
{
"caption": "git: rebase --abort",
"command": "gs_rebase_abort"
},
{
"caption": "git: rebase --continue",
"command": "gs_rebase_continue"
},
{
"caption": "git: rebase --skip",
"command": "gs_rebase_skip"
},
{
"caption": "git: reset",
"command": "gs_reset"
},
{
"caption": "git: reset (reflog)",
"command": "gs_reset_reflog"
},
{
"caption": "git: reset to branch",
"command": "gs_reset_branch"
},
{
"caption": "git: cherry-pick",
"command": "gs_cherry_pick"
},
{
"caption": "git: cherry-pick --abort",
"command": "gs_cherry_pick_abort"
},
{
"caption": "git: cherry-pick --continue",
"command": "gs_cherry_pick_continue"
},
{
"caption": "git: cherry-pick --skip",
"command": "gs_cherry_pick_skip"
},
{
"caption": "flow: init",
"command": "gs_git_flow_init"
},
{
"caption": "flow: feature start",
"command": "gs_git_flow_feature_start"
},
{
"caption": "flow: feature finish",
"command": "gs_git_flow_feature_finish"
},
{
"caption": "flow: release start",
"command": "gs_git_flow_release_start"
},
{
"caption": "flow: release finish",
"command": "gs_git_flow_release_finish"
},
{
"caption": "flow: hotfix start",
"command": "gs_git_flow_hotfix_start"
},
{
"caption": "flow: hotfix finish",
"command": "gs_git_flow_hotfix_finish"
},
{
"caption": "flow: support start",
"command": "gs_git_flow_support_start"
},
{
"caption": "flow: feature publish",
"command": "gs_git_flow_feature_publish"
},
{
"caption": "flow: feature pull",
"command": "gs_git_flow_feature_pull"
},
{
"caption": "flow: feature track",
"command": "gs_git_flow_feature_track"
},
{
"caption": "flow: release publish",
"command": "gs_git_flow_release_publish"
},
{
"caption": "flow: release pull",
"command": "gs_git_flow_release_pull"
},
{
"caption": "flow: release track",
"command": "gs_git_flow_release_track"
},
{
"caption": "flow: hotfix publish",
"command": "gs_git_flow_hotfix_publish"
},
{
"caption": "git: stash save",
"command": "gs_stash_save"
},
{
"caption": "git: stash save including untracked files",
"command": "gs_stash_save",
"args" : { "include_untracked": true }
},
{
"caption": "git: stash save staged changes only",
"command": "gs_stash_save",
"args" : { "stash_of_indexed": true }
},
{
"caption": "git: stash apply",
"command": "gs_stash_apply"
},
{
"caption": "git: stash pop",
"command": "gs_stash_pop"
},
{
"caption": "git: stash show",
"command": "gs_stash_show"
},
{
"caption": "git: stash drop",
"command": "gs_stash_drop"
},
{
"caption": "git: mv current file",
"command": "gs_mv_current_file"
}
]