chore(dev): add vscode git remote add task

This commit is contained in:
Quentin McGaw
2025-08-17 18:44:38 +00:00
parent 490410bf09
commit a1554feb3f

16
.vscode/tasks.json vendored
View File

@@ -13,6 +13,17 @@
"-providers", "-providers",
"${input:provider}" "${input:provider}"
], ],
},
{
"label": "Add a Gluetun Github Git remote",
"type": "shell",
"command": "git",
"args": [
"remote",
"add",
"${input:githubRemoteUsername}",
"git@github.com:${input:githubRemoteUsername}/gluetun.git"
],
} }
], ],
"inputs": [ "inputs": [
@@ -31,5 +42,10 @@
], ],
"default": "-maintainer" "default": "-maintainer"
}, },
{
"id": "githubRemoteUsername",
"type": "promptString",
"description": "Please enter a Github username",
},
] ]
} }