15 lines
499 B
JSON
15 lines
499 B
JSON
{
|
|
// VSCode tasks for this repo.
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "git sync (pull gitea -> push github + gitea)",
|
|
"type": "shell",
|
|
"command": "git fetch gitea && git merge --no-edit gitea/develop && git push github develop && git push gitea develop",
|
|
"options": { "cwd": "${workspaceFolder}" },
|
|
"presentation": { "reveal": "never", "focus": false, "panel": "shared", "showReuseMessage": false, "close": true },
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|