Merge branch 'git-tag' of https://github.com/ashutoshdhundhara/vscode into ashutoshdhundhara-git-tag

This commit is contained in:
Joao Moreno
2017-08-10 15:38:26 +02:00
5 changed files with 96 additions and 2 deletions

View File

@@ -187,6 +187,16 @@
"title": "%command.merge%",
"category": "Git"
},
{
"command": "git.createTag",
"title": "%command.createTag%",
"category": "Git"
},
{
"command": "git.showTags",
"title": "%command.showTags%",
"category": "Git"
},
{
"command": "git.pull",
"title": "%command.pull%",
@@ -212,6 +222,11 @@
"title": "%command.pushTo%",
"category": "Git"
},
{
"command": "git.pushWithTags",
"title": "%command.pushWithTags%",
"category": "Git"
},
{
"command": "git.sync",
"title": "%command.sync%",
@@ -347,6 +362,14 @@
"command": "git.pullFrom",
"when": "config.git.enabled && scmProvider == git && gitState == idle"
},
{
"command": "git.showTags",
"when": "config.git.enabled && scmProvider == git && gitState == idle"
},
{
"command": "git.createTag",
"when": "config.git.enabled && scmProvider == git && gitState == idle"
},
{
"command": "git.push",
"when": "config.git.enabled && scmProvider == git && gitState == idle"
@@ -355,6 +378,10 @@
"command": "git.pushTo",
"when": "config.git.enabled && scmProvider == git && gitState == idle"
},
{
"command": "git.pushWithTags",
"when": "config.git.enabled && scmProvider == git && gitState == idle"
},
{
"command": "git.sync",
"when": "config.git.enabled && scmProvider == git && gitState == idle"