[#25575] Add Git Tag feature.

This commit is contained in:
Ashutosh Dhundhara
2017-05-20 22:58:00 +05:30
parent 56b341c2e0
commit 211e7a3030
5 changed files with 158 additions and 6 deletions

View File

@@ -172,6 +172,21 @@
"title": "%command.branch%",
"category": "Git"
},
{
"command": "git.createTag",
"title": "%command.createTag%",
"category": "Git"
},
{
"command": "git.showTags",
"title": "%command.showTags%",
"category": "Git"
},
{
"command": "git.pushWithTags",
"title": "%command.pushWithTags%",
"category": "Git"
},
{
"command": "git.pull",
"title": "%command.pull%",
@@ -306,10 +321,22 @@
"command": "git.pullRebase",
"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"
},
{
"command": "git.pushWithTags",
"when": "config.git.enabled && scmProvider == git && gitState == idle"
},
{
"command": "git.pushTo",
"when": "config.git.enabled && scmProvider == git && gitState == idle"