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.
This commit is contained in:
claude_code
2026-06-23 18:54:24 +03:00
parent 5161de8ba9
commit 4704c3b7f9

14
.vscode/tasks.json vendored Normal file
View File

@@ -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": []
}
]
}