This commit is contained in:
Ryan Kegel
2026-02-16 14:57:55 -05:00
committed by Ryan Kegel
parent c17838241a
commit 7a827b14ef
8 changed files with 163 additions and 147 deletions

72
.vscode/tasks.json vendored
View File

@@ -1,31 +1,45 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Save Work In Progress",
"type": "shell",
"command": "git",
"args": ["savewip"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared"
}
},
{
"label": "Load Work In Progress",
"type": "shell",
"command": "git",
"args": ["loadwip"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared"
}
}
]
"version": "2.0.0",
"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
}
}
]
}