{ "version": "2.0.0", "windows": { "options": { "shell": { "executable": "bash.exe", "args": [ "-c" ] } } }, "tasks": [ { "label": "Git: Save WIP", "type": "shell", "command": "git save-wip", "group": "build", "presentation": { "reveal": "always", "panel": "shared" } }, { "label": "Git: Load WIP", "type": "shell", "command": "git load-wip", "group": "build", "presentation": { "reveal": "always", "panel": "shared" } }, { "label": "Git: Reset Cloud WIP", "type": "shell", "command": "git push origin --delete wip-sync", "presentation": { "reveal": "always", "panel": "shared" } }, { "label": "Git: Abort WIP (Reset Local)", "type": "shell", "command": "git abort-wip", "group": "none", "presentation": { "reveal": "always", "panel": "shared", "echo": true } } ] }