Changing autofetch to a string config which has "current", "all" and (#111090)

This commit is contained in:
Jason Williams
2020-12-11 05:54:21 +00:00
committed by GitHub
parent 39f78228fa
commit 83f43bee1d
3 changed files with 32 additions and 7 deletions

View File

@@ -1644,7 +1644,17 @@
"default": true
},
"git.autofetch": {
"type": "boolean",
"anyOf": [
{
"type": "boolean"
},
{
"type": "string",
"enum": [
"all"
]
}
],
"scope": "resource",
"description": "%config.autofetch%",
"default": false,