diff --git a/extensions/git/package.json b/extensions/git/package.json index 460c3a7c1d0..a254c18aa16 100644 --- a/extensions/git/package.json +++ b/extensions/git/package.json @@ -899,6 +899,11 @@ "group": "2_main@6", "when": "scmProvider == git" }, + { + "submenu": "git.tags", + "group": "2_main@7", + "when": "scmProvider == git" + }, { "command": "git.showOutput", "group": "3_footer", @@ -1501,6 +1506,16 @@ { "command": "git.stashDrop" } + ], + "git.tags": [ + { + "command": "git.createTag", + "group": "1_tags@1" + }, + { + "command": "git.deleteTag", + "group": "1_tags@2" + } ] }, "submenus": [ @@ -1527,6 +1542,10 @@ { "id": "git.stash", "label": "%submenu.stash%" + }, + { + "id": "git.tags", + "label": "%submenu.tags%" } ], "configuration": { diff --git a/extensions/git/package.nls.json b/extensions/git/package.nls.json index dfcdc3c8f15..e2a46033b41 100644 --- a/extensions/git/package.nls.json +++ b/extensions/git/package.nls.json @@ -172,6 +172,7 @@ "submenu.branch": "Branch", "submenu.remotes": "Remote", "submenu.stash": "Stash", + "submenu.tags": "Tags", "colors.added": "Color for added resources.", "colors.modified": "Color for modified resources.", "colors.stageModified": "Color for modified resources which have been staged.",