forked from kemayo/sublime-text-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.sublime-menu
56 lines (56 loc) · 2.59 KB
/
Main.sublime-menu
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
[
{
"id": "tools",
"children":
[
{
"caption": "Git",
"children":
[
{
"caption": "This file",
"children":
[
{ "caption": "Log", "command": "git_log" }
,{ "caption": "Diff", "command": "git_diff" }
,{ "caption": "Add", "command": "git_add" }
,{ "caption": "Reset", "command": "git_reset_head" }
,{ "caption": "Quick Commit", "command": "git_quick_commit" }
,{ "caption": "Blame", "command": "git_blame" }
,{ "caption": "Checkout", "command": "git_checkout" }
,{ "caption": "Graph", "command": "git_graph" }
,{ "caption": "Toggle Annotations", "command": "git_toggle_annotations" }
,{ "caption": "Add Selected Hunk", "command": "git_add_selected_hunk" }
,{ "caption": "Commit Selected Hunk", "command": "git_commit_selected_hunk" }
]
}
,{
"caption": "Whole repo",
"children":
[
{ "caption": "Log", "command": "git_log_all" }
,{ "caption": "Diff", "command": "git_diff_all" }
,{ "caption": "Diff Staged", "command": "git_diff_commit" }
,{ "caption": "Diff Tool", "command": "git_diff_tool" }
,{ "caption": "Graph", "command": "git_graph_all" }
,{ "caption": "Add...", "command": "git_add_choice" }
,{ "caption": "Open...", "command": "git_open_file" }
]
}
,{
"caption": "Stash",
"children":
[
{ "caption": "Save", "command": "git_stash" }
,{ "caption": "Pop", "command": "git_stash_pop" }
]
}
,{ "caption": "-" }
,{ "caption": "Status...", "command": "git_status" }
,{ "caption": "Branches...", "command": "git_branch" }
,{ "caption": "Merge...", "command": "git_merge" }
]
}
]
}
]