Implemented rebase onto

This commit is contained in:
tomerstav
2020-10-19 04:13:52 +00:00
parent 74ef0a92fe
commit 741925db11
5 changed files with 81 additions and 0 deletions

View File

@@ -298,6 +298,11 @@
"title": "%command.merge%",
"category": "Git"
},
{
"command": "git.rebaseOnto",
"title": "%command.rebaseOnto%",
"category": "Git"
},
{
"command": "git.createTag",
"title": "%command.createTag%",
@@ -703,6 +708,10 @@
"command": "git.merge",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"
},
{
"command": "git.rebaseOnto",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"
},
{
"command": "git.createTag",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"
@@ -1433,6 +1442,9 @@
{
"command": "git.merge"
},
{
"command": "git.rebaseOnto"
},
{
"command": "git.branch"
},