-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMain.sublime-menu
More file actions
53 lines (53 loc) · 2.46 KB
/
Copy pathMain.sublime-menu
File metadata and controls
53 lines (53 loc) · 2.46 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
[
{
"id": "tools",
"children":
[
{
"caption": "Git",
"children":
[
{ "caption": "Commit...", "command": "git_commit" },
{ "caption": "Commit All...", "command": "git_commit_all" },
{ "caption": "Reset", "command": "git_reset" },
{ "caption": "-" },
{ "caption": "Checkout...", "command": "git_checkout" },
{ "caption": "Add", "command": "git_add" },
{ "caption": "Remove", "command": "git_rm" },
{ "caption": "Move...", "command": "git_mv" },
{ "caption": "-" },
{ "caption": "Diff", "command": "git_diff" },
{ "caption": "Log", "command": "git_log" },
{ "caption": "Status", "command": "git_status" },
{ "caption": "Blame", "command": "git_blame" },
{ "caption": "-" },
{ "caption": "Pull...", "command": "git_pull" },
{ "caption": "Fetch...", "command": "git_fetch" },
{ "caption": "Push...", "command": "git_push" },
{ "caption": "Rebase...", "command": "git_rebase" },
{ "caption": "-" },
{ "caption": "Tag...", "command": "git_tag" },
{ "caption": "-" },
{
"caption": "Stash",
"children":
[
{ "caption": "Save", "command": "git_stash_save" },
{ "caption": "Apply", "command": "git_stash_apply" },
{ "caption": "Pop", "command": "git_stash_pop" },
{ "caption": "List", "command": "git_stash_list" },
{ "caption": "Clear", "command": "git_stash_clear" }
]
},
{ "caption": "-" },
{ "caption": "Init...", "command": "git_init" },
{ "caption": "-" },
{ "caption": "Settings...", "command": "git_settings" },
{ "caption": "Fetch", "command": "git_fetch" },
{ "caption": "Pull", "command": "git_pull" },
{ "caption": "Push", "command": "git_push" }
]
}
]
}
]