2024-08-02 13:05:16 +02:00
|
|
|
// https://github.com/Sublime-Instincts/CommandsBrowser/tree/master/sm_commands_metadata
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"caption": "Switch…",
|
|
|
|
"command": "checkout_branch",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"caption": "Switch -C…",
|
|
|
|
"command": "create_branch",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"caption": "Checkout -B…",
|
|
|
|
"command": "create_branch",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"caption": "Commit…",
|
|
|
|
"command": "commit",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"caption": "Browse repository",
|
|
|
|
"command": "git",
|
|
|
|
"args": { "argv": [ "browse" ] }
|
|
|
|
},
|
2024-08-20 16:56:41 +02:00
|
|
|
{
|
|
|
|
"caption": "Branch -D --all (delete remote and local branch)",
|
|
|
|
"command": "delete_branch",
|
|
|
|
"args": {
|
|
|
|
"argv": [ true, true, true ]
|
|
|
|
}
|
|
|
|
}
|
2024-08-02 13:05:16 +02:00
|
|
|
]
|