dvlyadmin_pro/.vscode/tasks.json
2025-03-19 12:00:22 +08:00

22 lines
524 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Git Commit & Push",
"type": "shell",
"command": "git add . ; git commit -m '自动提交'; git push",
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}"
}
}
]
// "inputs": [
// {
// "id": "commitMessage",
// "type": "promptString",
// "description": "输入提交信息:",
// "default": "Auto commit via VS Code Task"
// }
// ]
}