forked from timbrel/GitSavvy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
141 lines (141 loc) · 3.27 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
[
{
"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: quick commit",
"command": "gs_quick_commit"
},
{
"caption": "git: quick stage current file and commit",
"command": "gs_quick_stage_current_file_commit"
},
{
"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_commit",
"args": { "amend": true }
},
{
"caption": "git: graph",
"command": "gs_log_graph"
},
{
"caption": "github: open file on remote",
"command": "gs_open_file_on_remote",
"args": { "preselect": true }
},
{
"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: fetch",
"command": "gs_fetch"
},
{
"caption": "git: pull",
"command": "gs_pull"
}, {
"caption": "git: push",
"command": "gs_push"
}, {
"caption": "git: push to branch",
"command": "gs_push_to_branch"
},
{
"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: diff",
"command": "gs_diff"
},
{
"caption": "git: diff cached",
"command": "gs_diff",
"args": { "in_cached_mode": true }
},
{
"caption": "git: blame current file",
"command": "gs_blame"
},
{
"caption": "GitSavvy: reload modules (debug)",
"command": "gs_reload_modules_debug"
},
{
"caption": "git: log",
"command": "gs_log"
},
{
"caption": "git: log current file",
"command": "gs_log_current_file"
},
{
"caption": "git: log by author",
"command": "gs_log_by_author"
},
{
"caption": "git: merge",
"command": "gs_merge"
},
{
"caption": "git: abort merge",
"command": "gs_abort_merge"
},
{
"caption": "git: restart merge for file...",
"command": "gs_restart_merge_for_file"
},
{
"caption": "GitSavvy: help",
"command": "gs_help"
}
]