From 4704c3b7f9a5d9527561d8aedf81426c57d130c5 Mon Sep 17 00:00:00 2001 From: claude_code Date: Tue, 23 Jun 2026 18:54:24 +0300 Subject: [PATCH] chore(vscode): add push task for github and gitea Provides a VSCode task to push the develop branch to both GitHub and Gitea with a single command. --- .vscode/tasks.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..809e8d1c --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,14 @@ +{ + // VSCode tasks for this repo. + "version": "2.0.0", + "tasks": [ + { + "label": "git push (github + gitea)", + "type": "shell", + "command": "git push github develop && git push gitea develop", + "options": { "cwd": "${workspaceFolder}" }, + "presentation": { "reveal": "never", "focus": false, "panel": "shared", "showReuseMessage": false, "close": true }, + "problemMatcher": [] + } + ] +}