SCM - more improvements to the repositories view (#274438)

* SCM - tweak artifact folder compression

* SCM - fixed more commands and layout

* SCM - more compression changes
This commit is contained in:
Ladislau Szomoru
2025-10-31 21:49:50 +00:00
committed by GitHub
parent ff488e306c
commit edf5868b02
4 changed files with 118 additions and 54 deletions

View File

@@ -496,7 +496,6 @@
{
"command": "git.branch",
"title": "%command.branch%",
"icon": "$(plus)",
"category": "Git",
"enablement": "!operationInProgress"
},
@@ -1046,6 +1045,20 @@
"title": "%command.graphCompareRef%",
"category": "Git",
"enablement": "!operationInProgress"
},
{
"command": "git.repositories.createBranch",
"title": "%command.branch%",
"icon": "$(plus)",
"category": "Git",
"enablement": "!operationInProgress"
},
{
"command": "git.repositories.createTag",
"title": "%command.createTag%",
"icon": "$(plus)",
"category": "Git",
"enablement": "!operationInProgress"
}
],
"continueEditSession": [
@@ -1681,6 +1694,14 @@
{
"command": "git.repositories.compareRef",
"when": "false"
},
{
"command": "git.repositories.createBranch",
"when": "false"
},
{
"command": "git.repositories.createTag",
"when": "false"
}
],
"scm/title": [
@@ -1873,12 +1894,12 @@
],
"scm/artifactGroup/context": [
{
"command": "git.branch",
"command": "git.repositories.createBranch",
"group": "inline@1",
"when": "scmProvider == git && scmArtifactGroup == branches"
},
{
"command": "git.createTag",
"command": "git.repositories.createTag",
"group": "inline@1",
"when": "scmProvider == git && scmArtifactGroup == tags"
}