diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4926e403..56a494fb 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -13,6 +13,17 @@ "-providers", "${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": [ @@ -31,5 +42,10 @@ ], "default": "-maintainer" }, + { + "id": "githubRemoteUsername", + "type": "promptString", + "description": "Please enter a Github username", + }, ] } \ No newline at end of file